1.环境搭建
1.1 基本环境
-
python下载 安装成功后配置环境变量Path,使用包含python.exe的文件夹路径。
推荐python3.4!!!!因为与数据库连接,我只看到最新的是3.4。
-
IDE下载 选择一个漂亮的IDE,推荐pyCharm。
2.快速入门
2.1 变量
a=2
b=10
c=a+b
2.2 输入输出
a=input()
print(a)
2.3 语句
- 判定语句即为if,需要注意的是elif的书写和判定结果语句的缩进。如下:
score=90
if score>60:
print("及格")
elif score>80:
print("不错")
else
print("未知")
- 循环语句即为for 变量名 in range(起始值,终止值):,注意缩进,具体实例如下:
for i in range(0,100):
print(a)
2.4 定义函数
- 使用def来定义函数,使用函数名直接调用函数,注意缩进,具体实例如下:
#不含参函数
def sayhello():
print("hello")
#含参函数
def say(word):
print(word)
2.5 面向对象
#一个类
class hello:
def sayhello(self):
print("hello")
hello=hello()
hello.sayhello()
#一个类继承一个类
class hello:
def sayhello(self):
print("hello")
class hi(hello):
def sayhi(self):
print("hi")
hi=hi()
hi.sayhello()
2.6 引用其他py文件
- 有时候需要引用其他py文件,则需要使用import,实例如下:
# base.py文件
class hello:
def sayhello(self):
print("hello")
# from.py文件
import base
h=base.hello()
h.sayhello()
3.结语
关键字 |
功能 |
变量名 |
变量,直接定义 |
input() |
输入 |
print() |
输出 |
if 条件: (缩进)执行语句 |
判定语句 |
for 变量名 in range(起始值,终结值): (缩进)执行语句 |
循环语句 |
def 函数名: (缩进)执行语句 |
定义函数 |
class 类名: (缩进)定义类中函数 |
面向对象定义类 |
class 类名(继承的类名): (缩进)定义类中函数 |
面向对象继承类 |
import py文件名 |
引用其他py文件 |