3 Respostas
+ 6
Bro first try yourself, it will improve your logical thinking skill. If facing any problem than post your code  along with your question. 
All the best!!
+ 4
That’s going to be an infinite loop. First of all, computers start counting at 0, so i needs to equal 0. Second, i never changes. So after your print function, you will need to add 1 to i
0
x=input(“Enter a string:”)
i=1
while i<len(x):
         print(x[i])



