- 论坛徽章:
- 0
|
- Python 3.0a1 (py3k:57844, Aug 31 2007, 16:54:27) [MSC v.1310 32 bit (Intel)] on win32
- Type "copyright", "credits" or "license()" for more information.
- ****************************************************************
- Personal firewall software may warn about the connection IDLE
- makes to its subprocess using this computer's internal loopback
- interface. This connection is not visible on any external
- interface and no data is sent to or received from the Internet.
- ****************************************************************
-
- IDLE 3.0a1
- >>> a = 1
- >>> a
- 1
- >>> b = a
- >>> b
- 1
- >>> print b
- SyntaxError: invalid syntax (<pyshell#4>, line 1)
- >>> print(b)
- 1
复制代码 |
|