Uses a string as the sequence to create a list of characters in the string : Append : List PYTHON TUTORIALS


PYTHON TUTORIALS » List » Append »

 

Uses a string as the sequence to create a list of characters in the string


word = "Python"
list = []
for ch in word:
    list.append(ch)
print list



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo List
» Append