声明变量并赋值:
>>> x =3
>>> x * 3
>>> 6
表达式:某事
语句:做某事。 没有值可以供交互式解释器打印出来。
input 语句 实例代码:
>>>input "the age of xingchen="
the age of xingchen=21
21
>>>
用import导入模块,然后使用“模块.函数”的格式来使用这个模块函数。
比如:
>>>import math
>>>math.floor(32.9)
>>>32
他的另外一种方式:
from math import sqrt
>>>sqrt(9)
3.0
在 “from模块import函数名称”这种形式的import命令之后,就可以直接使用函数,而不需要模块名作为前缀。事实上可以使用变量名称来引用函数。 比如:Function_sqrt =math.sqrt 进行赋值,然后调用变脸:
>>>Function_sqrt(4)
2.0
如何保存文件并运行文件