博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python for 格式化字符串 list.count
阅读量:6579 次
发布时间:2019-06-24

本文共 1674 字,大约阅读时间需要 5 分钟。

1.格式化字符串-------------------------------------- name = input("your name:") age = input("your age:") if age.isdigit():     age = int(age) else:    # print("plz input a num")     exit("plz input a num") job= input("your job:") info =''' -------------the info of %s -----------     the name is %s     the age is %d     the job is %s     -------------------     ''' % (name,name,age,job) #这里的百分号和里面的值,对应上面的占位符 %s表字符串 %d 表数字 %f 表浮点数 print(info) 2---------------for----------------
# for i in range(1,100,2):# 1,表示起始 100,表示最终,2 表示步长。 (不写默认为1步)。 #     print(i) _name = "ming" _password = "abc" for i in range(1,4):     name = input("input you name:")     password = input("input you password:")     if _name == name and _password == password:         print("well come %s to our club" % name )         break     else:         print("there is no more than %s times" % (3-i) )         if  i == 3:             exit(" you have on chance")
3--------------break----------------------- break_flag = False for i in range(10):     print(i)     if i==9:         for j in range(10):             print("lak2",j)             if j==5:                 break_flag=True                 break     if break_flag==True:         break
4-------------list count-------------------------
 
a=['br','td','td','tr','br'].count('br') #统计tr出现的个数 b=['br','td','td','tr','br'] c=['3',3] c.extend(b) #把C扩展b里的内容 print(a) print(b) print(c) #index 查找内容所在的位置 d=c.index('td') # 即查td所在的位置 print(d) #reverse 倒序 print(c,'@@@@@@@正序') k = c.reverse() #这个没有返回值, print(k,'#---c.reverse() 这个没有返回值 -----倒序#') print(c,'--------倒序') #当然还可以这样子 e = c[::-1] #这个就有返回值了 print(e,'####,再倒序')

转载于:https://www.cnblogs.com/nfyx/p/8783361.html

你可能感兴趣的文章
尾部的0
查看>>
经典排序算法python实现
查看>>
微信小程序之授权 wx.authorize
查看>>
SPOJ 1811 Longest Common Substring (后缀自动机第一题,求两个串的最长公共子串)
查看>>
在Linux下蓝牙进行rfcomm连接
查看>>
React 编码
查看>>
redis 命令参考
查看>>
How Many Roads?
查看>>
git的使用
查看>>
(trigger)触发器的定义和作用
查看>>
本地储存
查看>>
shell小脚本工具合集
查看>>
10大基础实用算法及其讲解
查看>>
推荐系统干货总结【全】
查看>>
os.path 模块
查看>>
Python scrapy 常见问题及解决 【遇到的坑】
查看>>
百度UEditor图片上传或文件上传路径自定义
查看>>
(转载)bash: ./a.sh: /bin/bash^M: bad interpreter: No such file or directory的解决方法------dos--->unix...
查看>>
AngularJS开发指南13:AngularJS的过滤器详解
查看>>
利用boost将C++携程python可以调用的库
查看>>