摘要: 基础数据类型 a = 1 print(type(a)) b = 1.2 print(type(b)) c = True print(type(c)) a = c print(type(a)) e = "hello" print(type(e), id(e)) 2进制,8进制,16进制 a=0b101 阅读全文
posted @ 2023-07-20 00:45 yanghui01 阅读(22) 评论(0) 推荐(0)