Computer Science
Fill in the blanks:
Strings in Python store their individual letters in Memory in _________ location.
Python String Manipulation
4 Likes
Answer
contiguous
Answered By
2 Likes
Related Questions
Identify the valid declaration of L:
L = ['Mon', '23', 'hello', '60.5']
- dictionary
- string
- tuple
- list
Suppose a tuple T is declared as T = (10, 12, 43, 39), which of the following is incorrect ?
- print(T[1])
- T[2] = -29
- print(max(T))
- print(len(T))
Fill in the blanks:
Operator _________ when used with two strings, gives a concatenated string.
Fill in the blanks:
Operator _________ when used with a string and an integer gives an error.