摘要: 1、有列表['alex',49,[1900,3,18]],分别取出列表中的名字,年龄,出生的年,月,日赋值给不同的变量 l = ['alex', 49, [1900, 3, 18]] name, age, birth = l year,month,day=birth 2、用列表的insert与pop 阅读全文
posted @ 2020-07-13 20:26 刘海子 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 一整形int 基本使用 2 定义方式 age = 18 int功能可以把纯数字的字符串转成int类型 res = int("18") res= int("1.8") print(type(res)) 了解 print(bin(11))二进制 print(oct(11))八进制 print(hex(1 阅读全文
posted @ 2020-07-13 16:48 刘海子 阅读(142) 评论(0) 推荐(0) 编辑