+ 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.