0
How to split string into list in python? ??
I used .split command but it's not working
4 Respuestas
+ 2
string="Car Boat Bike Taxi"
list=string.split()
print(list)
+ 1
x = "hey"
myList = list()
for i in x:
myList.append(i)
print(myList) # output is ['h','e','y']
0
Thank u
0
a=['a'.......'z']
b=['p','l'i=j=0
while j <2
if a [i]=b [j]
k=0
while k <26
b [j]=a [i+k ]
print (b[j])
k=k+1
i=i+1
j=j+1
shift cipher code... I should get output as ok. ...where am I doing It wrong