I have this..
the_tuple = (1,2,3,4,5)
print ('\"',the_tuple[1],'\"')
showing
" 2 "
How can I get the output to show "2"
?
I have this..
the_tuple = (1,2,3,4,5)
print ('\"',the_tuple[1],'\"')
showing
" 2 "
How can I get the output to show "2"
?