摘要: file >setting,选择console Font,右侧primary font即设置console端的字体和大小 阅读全文
posted @ 2017-01-20 09:20 Feng_Forest 阅读(13154) 评论(0) 推荐(0) 编辑
摘要: file >setting,选择Editor >python,如下图所示: 阅读全文
posted @ 2017-01-20 09:12 Feng_Forest 阅读(46607) 评论(0) 推荐(2) 编辑
摘要: file——>setting,然后选择appearance,下图右侧红色边框中的内容即设置菜单的字体和大小 阅读全文
posted @ 2017-01-20 09:04 Feng_Forest 阅读(11301) 评论(1) 推荐(1) 编辑
摘要: File->Settings 在搜索框搜索increase 点击Increase Font Size(增大字体)右键选择Add Mouse Shortcut 然后按Ctrl并且鼠标滚轮往上滚。 同理可以设置减小字体【设置减小字体时,在搜索框内输入decrease】 阅读全文
posted @ 2017-01-19 22:45 Feng_Forest 阅读(22223) 评论(2) 推荐(4) 编辑
摘要: python中的字符串一旦定义,则不可以修改 python中的原始字符串 即 在字符串前面加小写字母r 比如:打印输出C:\Program Files\Microsoft Games python中的注释是三个单引号 即''' 要输出长字符串时,也可以使用三个单引号 字符串常用的功能有: 字符串拼接 阅读全文
posted @ 2017-01-11 22:03 Feng_Forest 阅读(268) 评论(0) 推荐(0) 编辑
摘要: python本身是由C语言编写的,所以python中是严格区分大小写的。 python中的变量定义的规则: 1、变量名只能是字母、数字、下划线的任意组合 2、变量名的第一个字符不能是数字 3、变量名不能是python的关键字,即不能是以下关键字 ['and', 'as', 'assert', 'br 阅读全文
posted @ 2017-01-11 21:33 Feng_Forest 阅读(172) 评论(0) 推荐(0) 编辑