Open In App

Python-Quizzes | Python String Quiz | Question 7

Question 7: What is the output of the following program?




my_string = 'geeksforgeeks'
for i in range(my_string): 
    print(i) 

(A) 0 1 2 3 … 12
(B) geeksforgeeks
(C) No Output
(D) Error

Answer: (D)
Explanation: range(str) is not allowed.
Quiz of this Question
Please comment below if you find anything wrong in the above post

Article Tags :