days = [‘sat’,‘sun’,‘mon’]
days[0]
The output is coming as ‘sat’.
How to remove the quotes in output.
days = [‘sat’,‘sun’,‘mon’]
days[0]
The output is coming as ‘sat’.
How to remove the quotes in output.
Found it, just add a print command.
print (days[0])