摘要:
一、pycharm字体放大的设置 File —> setting —> Keymap —>在搜寻框中输入:increase —> Increase Font Size(双击) —> 在弹出的对话框中选择Add Mouse Shortcut 在弹出的对话框中同时按住ctrl键和鼠标滚轮向上滑。 二、P 阅读全文
摘要:
练习题: 1.使用while循环输入1 2 3 4 5 6 8 9 10 a = 0 while a < 10 : a = a + 1 if a == 7 : pass else : print(a) 2.求1-100的所有数的和 a = 1 s = 0 while a < 101 : s = s 阅读全文