Write a Program to print all the characters in the string ‘PYTHON’ using while loop
(in python)
Answers
Answered by
1
Answer:
s = "PYTHON"
i = 0
while(i < len(s)):
print(s[i])
i+=1
Explanation:
Similar questions