2019年7月1日
摘要: 编程语言的发展史 0000,0000,000000010000 代表 LOAD A, 16 0000,0001,000000000001 代表 LOAD B, 1 0001,0001,000000010000 代表 STORE B, 16 0001,0001,000000000001 代表 STOR 阅读全文
posted @ 2019-07-01 20:36 xiaozhen·py 阅读(126) 评论(0) 推荐(0)
摘要: input输入name = input('please input your username>>:') #input括号中的内容需要用单引号引起来age = input ('age>>:') #input所获取的内容都会被保存为字符串类型print (type(age)) #类型为str'''py 阅读全文
posted @ 2019-07-01 20:32 xiaozhen·py 阅读(185) 评论(0) 推荐(0)