qpython-android / qpython.org

QPython contributor & sugguestion & question homepage
http://qpython.org
58 stars 11 forks source link

comparing range(.): Wrong 'false' boolean value #154

Open dibpython opened 7 years ago

dibpython commented 7 years ago

Hello. I have a Moto G, Android 5.1. Thank you for this app !

I would like to signal you a problem in QPython 3: I run the following boolean type test :

print(range(5)==range(5)) False

It should be True ! The following is correct:

print(list(range(5))==list(range(5))) True