Please answer any of these... correctly
1. Strings in Python store their individual letters in Memory in _____ location.
2. Using _____ function, you can make a true copy of a list.
3. The _____ statement can remove an individual item or a slice from a list.
4. The _____ function returns all values from Key : value pair of a dictionary.
5. The _____ function returns all the Key : value pairs as (key, value) sequences.
6. _____ is the Python operator responsible for declaring variables.
7. The built-in function randrange() belongs to _____ module.
Answers
Answered by
4
Answer:
1. Strings in Python store their individual letters in Memory in contiguous location.
2. Using Python List copy () function, you can make a true copy of a list.
3. The remove an element by index, pop() statement can remove an individual item or a slice from a list.
4. The len() function returns all values from Key : value pair of a dictionary.
5. The get(key[,d]) function returns all the Key : value pairs as (key, value) sequences.
6. Creating Variables is the Python operator responsible for declaring variables.
7. The built-in function randrange() belongs to random module.
Hope it helps uh :)
Similar questions