print("helloworld") import sysprint(sys.path) #打印环境变量 print(sys.argv) #相对路劲- import os #cmd_res = os.system("dir")#执行命令,不保存结果cmd_res = os.popen("dir").read() #打印结果 print(‘---》‘,cmd_res)os.mkdir("new_dir") #创建目录 import login重点导入自己定义模块的时候,第一是先选择文件当前目录,如果需要方便可以把文件放到C:\Program Files\Python37\Lib\site-packages 目录下 python 2 里面有long int整数
但是python3 里面只有int 整数
二进制bytes 和字符串的转换
msg = "我爱北京天安们" print(msg)print(msg.encode(encoding="utf-8")) print(msg.encode(encoding="utf-8").decode(encoding=‘utf-8‘))
原文地址:https://www.cnblogs.com/hapen66/p/11030181.html
时间: 2024-10-11 21:39:29