摘要:
1 # 自己写的 2 con = input('请输入内容:') 3 li = con.strip().split('+') 4 i = 0 5 sum = 0 6 while i < len(li): 7 sum += int(li[i]) 8 i +=1 9 print(sum) 10 11 # 阅读全文
摘要:
1.pycharm下载安装 pure python 字体:settings -- 搜mouse -- General -- 选中Change front size(Zoom) with Ctrl+Mouse Wheel 路径:前:python.exe执行文件路径 后:.py文件路径 快捷键:全注释: 阅读全文
摘要:
1. 判断下列逻辑语句的True,False.(1) 1 > 1 or 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6 True(2) not 2 > 1 and 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6 Fals 阅读全文