Jun-20-2019, 06:43 AM
I am not sure what this code is supposed to accomplish but one suggestion anyway. Don't use Python as typing machine. Let Python do the heavy lifting. You don't need variables just for using in list. There is list comprehension for that. Instead of tedious typing of variables and putting them into list manually one can have list this way:
>>> [num for num in range(10)] [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy
Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.