摘要:
字符编码内存默认用unicode-快磁盘用的utf-8-小 #存储过程中内存unicode --decode--> utf-8磁盘utf-8磁盘 --encode--> 内存unicode #执行过程中内存unicode --encode--> utf-8(bytes)utf-8(bytes) -- 阅读全文
摘要:
x=1y=2data=x if x>y else yprint (data) 相当于 if x>y: print (x)else: print (y) 阅读全文
摘要:
函数分为定义阶段和调用阶段 def xxx(参数): '''注释''' 表达式 xxx() -->调用 常用的print() 就是python内部定义好的函数 #########函数返回值########### return 在函数中定义 return, 在调用的时候可以把返回值传递给一个变量,和p 阅读全文
摘要:
当循环正常退出,没有break 就会 执行else,一般用于 打印执行结果 for i in range(3): print (i) else: print (" >ok") i=0 while i<3: print (i) i +=1 else: print ('3') 阅读全文
摘要:
python3文件操作 #读取, 就不能写, 写就报错 F=open('a.txt',mode='r',encoding='utf-8') data=F.read() print (data) F.close() mode=r+ -->读 和写 ,没有 这个文件 报错 data1=F.readlin 阅读全文