I\'m looking for a way to print elements from a tuple with no brackets.
Here is my tuple:
mytuple = [(1.0,),(25.34,),(2.4,),(7.4,)]
You can do it like this as well:
mytuple = (1,2,3) print str(mytuple)[1:-1]