πŸ“Š Python
Q. What will be the output of the following Python code snippet?
Code:
x = 'abcd'
for i in range(len(x)):
    print(x)
    x = 'a'
  • (A) a
  • (B) abcd abcd abcd abcd
  • (C) a a a a
  • (D) none of the mentioned
πŸ’¬ Discuss
βœ… Correct Answer: (D) none of the mentioned

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

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