Communities for your favorite technologies. Explore all Collectives
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Answer is trivial. try try this.
x=input()x=input()
x=input()
-Assume [1,3,5,'aA','8as'] Suppose that [1,3,5,'aA','8as'] are given as the inputs
[1,3,5,'aA','8as']
print len(x)print len(x)
print len(x)
this gives an answer of 5
print x[3]print x[3]
print x[3]
this gives 'aA''aA'
'aA'
Answer is trivial. try this.
-Assume [1,3,5,'aA','8as'] are given as the inputs
this gives 'aA'
Suppose that [1,3,5,'aA','8as'] are given as the inputs
-Assume 1[1,3,5,'aA','8as''8as'] are given as the inputs
*note- x=input() method saves the input as a tuple which is very similar to list
-Assume 1,3,5,'aA','8as' are given as the inputs