- A ('P')('y')('t')('h')('o')('n')
- B python
- C (0, 'P')(1, 'y')(2, 't')(3, 'h')(4, 'o')(5, 'n')
- D p0ython
Python Programming Language MCQ Python for Loop MCQ
⚠ Report ✓ Question Verified Copy Link
x = ['P', 'y', 't', 'h', 'o', 'n']
for i in enumerate(x):
print(i, end='')
Learn More MCQ Questions from Python Programming Language MCQ Python for Loop MCQ