[1,3,5]*3 and[1,3,5]*=3 find output and difference
Answers
Answered by
1
Answer:
Considering it as python problem:
>>> [1,3,5]*3
[1, 3, 5, 1, 3, 5, 1, 3, 5]
# list items repeated 3 times
--------------------------------------------------
>>> [1,3,5] *=3
File "<stdin>", line 1
SyntaxError: can't assign to literal
Similar questions
Physics,
5 months ago
Environmental Sciences,
5 months ago
CBSE BOARD X,
10 months ago
English,
10 months ago
Math,
1 year ago
Computer Science,
1 year ago