Hi i am writing a code but unfortunately when i try to store multiple variables from a list or tuple into a new variable it just makes a new tuple
content=['2.0', 'Banana']
newli = content[0],'\t',content[1]
print(newli)
It should be printing like a string but it is printing as a tuple in round brackets. I need this tab spacing in between these two variables. Any help would be really appreciated.
by doing content[0]+'\t'+content[1]
the tab space is not working
Actually what i wanted to achieve it so i can call this variable anywhere without using the manual print command everywhere and also to write in a file