进入-直接在终端输入python
退出-在终端输入quit()
但是直接运行python文件和交互式运行两种方式所得到变量互相独立,互不干扰。
PS C:\Users\86151\Desktop\python作业> python
Python 3.8.1 (tags/v3.8.1:1b293b6, Dec 18 2019, 22:39:24) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> 1+1
2
>>> quit()
PS C:\Users\86151\Desktop\python作业>