随笔分类 - Python
只是跟风...
摘要:pip 列出所有安装的库 pip list 列出所有过期的库 pip list --outdated 安装pip-review。 pip install pip-review pip-review --local --interactive pip-review ERROR: Could not i
阅读全文
摘要:Chapter10 2020-04-11 20:09:04 程序崩溃可不好,但让用户看到traceback也不是好主意。如果用户怀有恶意,他会通过traceback获悉你不希望他知道的信息。有时候,训练有素的攻击者可根据这些信息判断出可对你的代码发起什么样的攻击。 try-except 代码块 执行
阅读全文
摘要:Chapter07 用户输入和while 循环 input() age = input("How old are you? ") print(age) #默认为字符串 age = int(age) print(age) #强制类型转换 while current_number = 1 while c
阅读全文
摘要:参考书:《Python编程:从入门到实践》 还有其他 Chapter01 print print(a,b,sep="|") sep规定输出间的间隔 print(“Python\n\tniubi”) \n换行,\t制表符 文件操作: f=open('D:\main.java','w') print('
阅读全文