摘要:
python库常用函数及举例: <!--[if !supportLists]-->2. <!--[endif]-->取大于等于x的最小的整数值,如果x是一个整数,则返回x>>> math.ceil(4.12)5 <!--[if !supportLists]-->3. <!--[endif]-->把y 阅读全文
摘要:
python数据类型有8种。 1、整数 2、浮点数 3、字符串 4、布尔值 5、空值 6、列表 7、字典 8、自定义数据类型 字符串转整数: a = input('请输入:') 1 int(a) 1 字符串转浮点: a = ‘1’ float(a) 1.0 int和float的区别 int是整数,整 阅读全文