I have a doubt in Python. Help please!
Featured Replies
Сейчас на странице 0
- Нет пользователей, просматривающих эту страницу
A better way to browse. Learn more.
A full-screen app on your home screen with push notifications, badges and more.
Используя этот сайт, вы соглашаетесь Условия использования.
So, here’s my code:
�from random import randrange
Random1 = randrange(0,100)
Random2 = randrange(0,100)
print Random1
print Random2’
Now, when I use this code in a new window and then run it over and over again, the value of �Random1’ and �Random 2’ changes, but when I use it in interactive prompt, the value remains the same. Why is that?