摘要:
打开设置 在搜索框搜索increase 点击Increase Font Size(增大字体)右键选择Add Mouse Shortcut 同理可以设置减小字体【设置减小字体时,在搜索框内输入decrease】 阅读全文
摘要:
>> int 转 str s = str(i) # 无条件转换 >> str 转 int i = int(s) # 字符串必须是数字;否则语法报错 >> int 转 bool b = bool(i) # 非0即为Ture >> str 转 bool b = bool(s) # “” 什么都没有为Fa 阅读全文