在python3.8的平台可以输入了hello world, ide还能当做计算器

>>> print("hello world")
hello world
>>> 1+1
2
>>> 2+3
5
>>> 2*3
6
>>> 3*4
12
>>> 1/2
0.5
05-28 13:49