a=2
b=10
c=a+b
a=input()
print(a)
判定语句即为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)
#不含参函数
def sayhello():
print("hello")
#含参函数
def say(word):
print(word)
#一个类
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()
# base.py文件
class hello:
def sayhello(self):
print("hello")
# from.py文件
import base
h=base.hello()
h.sayhello()
关键字 | 功能 |
---|---|
变量名 | 变量,直接定义 |
input() | 输入 |
print() | 输出 |
if 条件: (缩进)执行语句 | 判定语句 |
for 变量名 in range(起始值,终结值): (缩进)执行语句 | 循环语句 |
def 函数名: (缩进)执行语句 | 定义函数 |
class 类名: (缩进)定义类中函数 | 面向对象定义类 |
class 类名(继承的类名): (缩进)定义类中函数 | 面向对象继承类 |
import py文件名 | 引用其他py文件 |
2024 - 快车库 - 我的知识库 重庆启连科技有限公司 渝ICP备16002641号-10
企客连连 表单助手 企服开发 榜单123