How to do lists in python?
Mine do not really work. I tried this:
thislist = ["apple", "banana", "cherry"]
print("thislist")
Voters
Ask coding questions
Mine do not really work. I tried this:
thislist = ["apple", "banana", "cherry"]
print("thislist")
Hey John/josh. this is pretty easy to solve. You made a simple, but nasty mistake, which happened to me often aswell. instead of
print("thislist")
, you have to doprint (thislist)
. Now it prints your list!@enigma_dev thx!