第一章 基础知识
1.1、终端输入 python3,可进入交互式解释器,输入python hello.py可以直接执行.py类型文件
1.2、“a\a”和‘a\a’的单引号和双引号的区别。双引号里面的内容符号会被转义,单引号里面的内容保持原始内容。
1.3 Python字符串使用Unicode编码表示文本
1.4、函数
abs(number) 取绝对值
bytes(string, encoding[, errors]) 对string进行编码,并以指定方式处理errors
cmath.sqrt(number) 返回平方根;可用于负数(以复数形式显示)
float(object) 将字符串或数字浮点化
help([object]) 提供交互式帮助
input(prompt) 以字符串的方式获取用户输入
int(object) 将字符串或数转为整型
math.ceil(number) 浮点数向上取整
math.floor(number) 浮点数向下取整
math.sqrt(number) 返回平方根,不能用于负数
pow(x, y[, z]) 返回x的y次方对z的求模结果
print(object, …) 将提供的实参打印出来,并用空格分隔
repr(object) 返回指定值的字符串表示
round(number[, ndigits]) 四舍五入为指定的精度
str(object) 将指定的值转换为字符串。
网友评论