小白学Python 之变量及循环 一
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小白学Python 之变量及循环 一相关的知识,希望对你有一定的参考价值。
name="donghuangtai" if name=="北京欢饮您": print("北京") elif name=="donghuangtai" : print("北京朝阳起") else: print("大背景") #格式化输出字符串 n="good{},{}shi yi ge da shen"; name="wang dong sheng"; title="zhen shen"; print (n.format(name,title)) #创建列表 fruit=["苹果手机","魅族","华为","小米"]; p=["大牛","小妞","牛逼","艹"] #添加数组数据 fruit.append("华为") # 数组合并 p.extend(fruit) #移除数据 p.remove("艹") #数组相加 k=fruit+p #数组反转排序 k.reverse(); m=[8,2,5,4,7,6,1] #数组排序 m.sort(); #比较数组是否相等 b=p==m; #立方根 n=2**3; print (n); #循环 #取值范围 k=range(3,10); #for循环 for i in range(20): print("这个数是{}".format(i)); print(i); #遍历列表 b=[2,5,6,7,3,1,90,34]; b.sort(); for i in b: print (i) #带条件遍历 for i in b: if i==5: print ("终于等到5了") #break;#跳出循环 else: print(i) #while循环 i=1; while i<5: i=i+1; print (i)
以上是关于小白学Python 之变量及循环 一的主要内容,如果未能解决你的问题,请参考以下文章