Samuel Shapiro
- 活动总数 2
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 1
-
Samuel Shapiro 创建了一个帖子, 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 >>>...