摘要:
sys模块 sys.argv 接受命令行传递的参数 第一个参数时文件名称,后续为参数 脚本内容: #!/usr/bin/python3 import sys name="hello world" print(name) print(" "); print("The list of command l 阅读全文
摘要:
python字符串操作 count()统计字符在字符串中出现的次数 name = "zhangSan" num = name.count('S') print("{0}".format(num)) # 打印结果:1 name = "zhangSan" num = name.count('S', 0, 阅读全文
摘要:
文字转语音 import pyttsx3 # 初始化一个朗读引擎 engine = pyttsx3.init() # 阅读 engine.say("study Python!") # 运行并且等到播放完毕 #修改音量 0-1.0 volume = engine.setProperty("volume 阅读全文