Computer Science, asked by mamtapundhir78, 7 months ago

(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 btrisha84503
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