Login and Register ×
Check your Email for the OTP
Python Programming Language MCQ Python Tuple MCQ
⚠ Report ✓ Question Verified Copy Link
aTuple = (100,) print(aTuple * 2)
Explanation:
We can use * operator to repeat the tuple values n number of times.
*
n
For example:
("abc",)*3 will return ('abc', 'abc', 'abc')
("abc",)*3
('abc', 'abc', 'abc')
Related Topic:
Share Above MCQ
Learn More MCQ Questions from Python Programming Language MCQ Python Tuple MCQ