πŸ“Š Python
Q. What will be the output of the following Python code?
Code:
x = 'abcd'
for i in range(len(x)):
    print(i.upper())
  • (A) 0 1 2 3
  • (B) a b c d
  • (C) error
  • (D) 1 2 3 4
πŸ’¬ Discuss
βœ… Correct Answer: (C) error

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
206
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Vaibhav Shukla
Publisher
πŸ“ˆ
85%
Success Rate