标签:word 创建 基础 分支 orm 返回 while循环 元组 返回值
# Python基础知识
1. 典型的Python语句:
``` python
num = int(input(" "))
#循环
for i in range(5):
print("第{}次循环".format(i))
#分支
if num>5:
print("num>5")
else:
print("num<5")
#简写分支:
#循环
i = 0
while i<5:
i=i+1
print("while循环中的第{}次循环".format(i))
#列表 列表中的元素不需要具有共同的数据类型,元素之间用逗号隔开
list = {‘hello‘,‘world‘,‘python‘,1999,"具有不同的数据类型"}
#列表中的元素收取 正负数都可以
for word in list:
print(word)
#元组
tup = () #创建
#def来定义函数
def fun1(x):
a = x*x
#python除法的区别
b = x/2
c = x//2
#python支持函数多返回值
return a,b,c
a,b,c = fun1(num)
print(a,b,c)
print("hello python!")
```
标签:word 创建 基础 分支 orm 返回 while循环 元组 返回值
原文地址:https://www.cnblogs.com/oldfor/p/11042907.html