(d)
list = [ 'pqrs', 456, 2.23, 'sam', 70.2]
miniaturelist = [123, 'nimisha']
print list
# Prints complete list
print list[0]
# Prints first element of the list
print list[1:3]
# Prints elements starting from 2nd till 3rd
print list[2:]
# Prints elements starting from 3rd element
print miniaturelist * 2
# Prints list two times
print list + miniaturelist
# Prints concatenated lists
Answers
Answered by
0
Answer:
The answer you only gave right in the form of #tags..
PQRS
456,2.23,"SAM"
2.26,"SAM",70.2,123,"NIMISHA"
[123, 'nimisha']
List = [ 'pqrs', 456, 2.23, 'sam', 70.2, 123, 'nimisha']
PLEASE MARK ME AS BRAINLIEST
Similar questions
Math,
5 months ago
English,
5 months ago
Social Sciences,
5 months ago
Economy,
10 months ago
Art,
1 year ago