This is so simple! Why isnt it working?!?!?
My python program...
def main(): mont = [] mont[0] = \"bnkj1\" mont[1] = \"bnkj2\" mont[2] =
This avoids building an empty list and then appending to it thrice.
def main(): mont = ["bnkj1", "bnkj2", "bnkj3"] print(mont[0]) main()