2019年5月29日
摘要: 3.布尔(bool)表示对和错,真和假 True False [条件判断] type(变量)告诉你这个变量是什么类型 a="周润发" print(type(a)) #打印a的数据类型→str b=128 print(type(b))→int c=True print(type(c)) a=1 b=2 阅读全文
posted @ 2019-05-29 21:13 哇噻噻 阅读(109) 评论(0) 推荐(0)