python

导航

2019年3月4日 #

学习python

摘要: 编码 ASSIC 每一个字符统一都需要8个bit来存储 计算机容量 1位 = 1bit 8bit = 1byte = 1字节 1024bytes = 1kbytes =1KB 1024个字符,小文档 ,几百k可以表示一张图片 1024KB = 1Million Bytes = 1MB = 1兆 , 阅读全文

posted @ 2019-03-04 10:38 不嗔 阅读(89) 评论(0) 推荐(0)

练习

摘要: #查成绩 score=int(input("your score:")) if score>90: print("A") elif score>80: print("B") elif score>70: print("C") elif score>60: print("D") else: print("挂") #猜年龄 age_of_princa... 阅读全文

posted @ 2019-03-04 10:34 不嗔 阅读(134) 评论(0) 推荐(0)