·CLASS For example, class Restaurant(): def __init__(self, restaurant_name, …
分类:Study-notes
Python chapter 8 learning notes
·定义一个函数 For example, def greet_user():#定义函数 print("Hello!") Now, we just need to …
安装package control的几种方法
在线安装: import urllib.request,os,hashlib; h = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0ef93d5f746d…
Python chapter 7 learning notes
l 函数input()工作原理 n 示例演示了一种创建多行字符串的方式,第一行将消息的前半部分存储在变量prompt中,第二行,+=在存储在prompt中的字符串末尾附件一个字符串。 例如: prompt = &qu…
Python chapter 6 learning notes
l A simple dictionary alien_0 = {'color': 'green','point': 5} print(al…
Python chapter 5 learning notes
一个简单例子 在python中,检查是否相等时,大小写不同默认是不相等的。如果需要不考虑大小写,则可把他们都统一转换成小写。 检查多个条件时有以下两种情…
安装pygame步骤
首先要安装pip,一般情况下最新版的python环境都默认集成了pip。 如果想升级集成的pip,可以如此: 如果是在LINUX或者macOS上,运行: pip install -U pip 如果是在windo…