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,)]
mytuple = [(1.0,),(25.34,),(2.4,),(7.4,)] for item in mytuple: print(*item) # *==> unpacking