0
list function
the last question in list function is confusing.
3 Answers
0
can you show me the question
0
first you need to append the list to add 'z'
so drag and drop
'append'
then you must know the length of the list
len() function is used to know length so u need to pass list variable (i.e) (list) to it
The complete code:
list.append('z')
print(len(list))
that's it! let me know if u are clear
0
ohh thanks mein . now I understand.