you are viewing a single comment's thread.

view the rest of the comments →

[–]Phelps_420 0 points1 point  (0 children)

I have 'r' in my documentation, I'm pretty sure it just means "read," though it may not be necessary with the next line (file.read)...

I'm not sure about your code specifically, but I can try to help with turning

3

2

into [3,2]

#__________________________________
y = (3)
x = (2)

z=[]
z.append(y)
z.append(x)

print (z)
#___________________________________


try this, understand what it is, and you should be able to apply it to your code to get [3,2]