+ 3
What is the right way to transform a Python string into a list?
3 Réponses
+ 6
https://www.sololearn.com/Discuss/1525057/?ref=app
+ 1
sting=input()
stil=[]
n=0
while True:
stil.append(sting[int(n)])
n+=1
if n==len(sting)
break
print(stil)