码迷,mamicode.com
首页 > 其他好文 > 详细

test1

时间:2019-06-18 00:26:02      阅读:122      评论:0      收藏:0      [点我收藏+]

标签: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!")
```

test1

标签:word   创建   基础   分支   orm   返回   while循环   元组   返回值   

原文地址:https://www.cnblogs.com/oldfor/p/11042907.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!