Samuel Shapiro
- Total activity 2
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
-
Samuel Shapiro created a post, Python console - different variables appeared to be the same object when code copied to console as block
Hello, This what I noticed, using Pycharm's Python console When the code below is copied to console as block, variables 'a' and 'b' are the same objects>>> a = 1000 b = 1000 print (a is b) True >>>...