l A simple dictionary alien_0 = {'color': 'green','point': 5} print(al…
分类:Python
Python chapter 5 learning notes
一个简单例子 在python中,检查是否相等时,大小写不同默认是不相等的。如果需要不考虑大小写,则可把他们都统一转换成小写。 检查多个条件时有以下两种情…
安装pygame步骤
首先要安装pip,一般情况下最新版的python环境都默认集成了pip。 如果想升级集成的pip,可以如此: 如果是在LINUX或者macOS上,运行: pip install -U pip 如果是在windo…
Python chapter 4 learning notes
1. About loop · Indentation means these sentence…
Python chapter 2&3 learning notes
方法是Python对数据执行的操作。 For example, Upper() 全部大写 Lower() 全部小写 Title() 首字母大写 rstrip() 删除多余空格(此时的删除都是暂时的,非永久。如需永久需要重新幅值给原变量) 当…
The Zen of Python
The Zen of Python by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than c…