0

Im confused and don't understand this part

11th Aug 2017, 2:26 PM
PRAVIN A/L RENGASAMY
PRAVIN A/L RENGASAMY - avatar
2 odpowiedzi
+ 10
#lists are... like lists! you format them like this: mylist=["foxy","boxy"] #you can acess a item in the list like this: print(mylist[0]) #keep in mind that the counting starts from zero instead of one. here's a way to go through every element of a list: for thing in list: print(thing) #thing can be named whatever you like, and can be treated like a variable.
11th Aug 2017, 3:29 PM
Ahri Fox
Ahri Fox - avatar
+ 4
some cheat sheet for you https://cheeze.club/g2n1
11th Aug 2017, 2:56 PM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar