+ 1
Same python code different result in Solo python code playground
items = [2, 4, 6, 8, 10, 12, 14] middle = int(len(items) // 2) print(items[middle]) I pasted the above to code playground. After run, it shows āno outputā. Click run again, it shows ā8ā. Every click will show either āno outputā or ā8ā. Is it the code issue or solo editor issue? Thanks!
5 Answers
+ 2
"items" is a keyword in python so you can't use it as variable name.
#CODE:
num = [2, 4, 6, 8, 10, 12, 14]
middle = int(len(num) // 2)
print(num[middle])
+ 1
Can you give me the link where items is used as variable name, if possible?
0
better to use elem vs item and lst vs list, and st vs str
0
RKK 26.4 āthe middle elementā practise.
just found out I misunderstood the question. But anyway, it does pre-set āitemsā as var.