Python基础字符串拼接+ifwhilefor循环
注释
单⾏注释 #
多⾏注释 ''' 三个单引号或者三个双引号 """
''' ⽤三引号引住可以多⾏赋值
⽤户交互 input
字符串拼接
+ ""%() "".format()推荐使⽤
name = input("name:")
age = int(input("age:"))
sex = input("sex:")
例:+
# 字符串拼接+
info1 = '''----info in ''' + name + '''---
name:''' + name + '''
age:''' + age + '''
sex:''' + sex + '''
'''
例:""%()
# %格式化字符串
info = '''------info in %s -------
name:%s
age:%d
sex:%s
''' % ("name", "name", age, "sex")
#"".format()
字符串格式化 format []都是可选的,可填可不填
格式:[[fill][align][sign][#][0][width][,][.precision][type]
fill 填充字符
align 对齐⽅式
^ 居中 s = "{:-^20d}".format(20) -----20-----
< 内容左对齐 s = "{:-<20d}".format(20) 20----------
> 内容右对齐 s = "{:->20d}".format(20) ----------20
= 内容右对齐,将符号放在填充字符的左侧,只对数字有效
sign 有⽆符号数字(感觉⽤处不⼤)
+ 正数加+ 负数加- s = "{:+d} this is Numbers".format(-20) -20
- 正数不变负数加- s = "{:-d} this is numbers".format(23) 23
空格正数空格负数加- s = "{: d} this is numbers".format(23) 23
# 对数字有效,对于⼆、⼋、⼗六进制,会对应显⽰ 0b 0o 0x s = "{:#0x}".format(213)
width 格式化字符宽度 s = "{:-^20d}".format(20)
, 对⼤的数字有效,添加分隔符如1,000,000 s = "{:,d}".format(2000000000) 2,000,000,000
.precision ⼩数位保留精度 s = "{:.2f}".format(12.2323) 12.23
type 格式化类型
s 字符串 s = "this is {}".format("string")
b ⼗进制转⼆进制表⽰然后格式化 s = "{:d}".format(23) 10111
d ⼗进制
o ⼗进制转⼋进制表⽰然后格式化 s = "{:o}".format(23) 27
x ⼗进制转⼗六进制表⽰然后格式化 s = "{:x}".format(23) 17
f 浮点型默认⼩数点保留6位
% 显⽰百分⽐默认⼩数点后6位 s = "{:.2%}".format(0.1234)
参数可⽤[]及{} ,使⽤时必须加*,**
s = "my name is {},age is {}".format(*["niu", 25])
s = "my name is {name}, age is {age}".format(**{"name": "niu", "age": 25})
info3 = '''---info in {_name}---
name:{_name}
age:{_age}
sex:{_sex}
'''.format(_name=name,
_age=age,
_sex=sex)
info4 = '''---info in {0}---
name:{0}
age:{1}
sex:{2}'''.format(name, age, sex)
模块定义:
密⽂密码:getpass 引⽤后使⽤,pass()
if else 使⽤
例:
username = "username"
password = "123456"
_Username = input("Username:")
_Passwd = input("Password:")
if username == _Username and password == _Passwd:
print("welcome user {name} to beij".format(name=username))
else:
print("Invalid username or passwd")
if elif else
例:
Myage = 37
InputAge = int(input("please input my age:"))
if InputAge == Myage:
print("It's right")
elif InputAge > Myage:
print("Think small")
else:
print("Think big")
While else循环
count = 0
while count < 3:
Myage = 37
InputAge = int(input("please input my age:"))
if InputAge == Myage:
print("It's right")
break
elif InputAge > Myage:
print("Think small")
else:
print("Think big")
count+=1
else:
print("fuck you!")
break 跳出当前整个循环
continue 跳出当前循环,进⼊下次循环
作业
编写登陆接⼝
输⼊⽤户名密码
认证成功后显⽰欢迎信息
输错三次后锁定
old_uname = open(r'C:\Users\Administrator\', 'r').readlines() count = 0
while count < 3:
username = input("please your username:")
passwd = input("please your passwd:")
for i in old_uname:
if i == username:
print("wolcome to your blogs:{_uname}".format(_uneme=username))
break
else:
while语句怎么用pythoncontinue
else:
count += 1
if count == 3:
continue
print("The password you entered is incorrect!please ")
else:
print("三次错误,账号已锁定")
open(r'C:\Users\Administrator\', 'a').write(username + '\n')字符串基础
#字符串操作
#去掉空格 strip () 括号内可指定默认是空格
username = input("username:")
if username.strip('-') == "zhang":
print(username.strip('-'))
print("welcome %s to beijing" % username)
# 分割 split 可指定根据什么分割
list11 = "welcome to beijing"
list2 = list11.split()
print(list2) # ['welcome', 'to', 'beijing']
# 合并 join 可指定根据什么合并
list3 = ":".join(list2) + '\n'# welcome:to:beijing
list4 = "".join(list2) # welcome to beijing
print(list3, list4)
# 判断有没有空格\切⽚
name = "mr,niu"
print(","in name)
name1 = "mr niu"
print(""in name1)
print(name[2:4])
# format 字符串格式化
men = "my name is {name}, age is {age}"
all = men.format(name="niu", age=23)
men1 = "my name is {0}, age is {1}"
all1 = men1.format("niu", 23)
print(all1)
fill = "niu"
fill.isdigit() # 判断是不是数字
fill.startswith('') # 判断是不是以指定字符串开头
fill.upper() # 批量转换成⼤写
fill.lower() # 批量转换成⼩写
fill.capitalize() # 第⼀个字母⼤写,其他都⼩写
fill.title() # 每个单词的⾸字母⼤写,其他都⼩写
(20, '='))
(1)、转义字符串
(2)、raw字符串--转义机制 open(r'c:\','a+')
(3)、Unicode字符串
(4)、格式化字符串 "age %d,sex %s,record %m.nf"%(20,"man",73.45)字符串基础操作
+ 连接、* 重复、s[i] 索引(index)、s[i:j] 切⽚(slice)、for循环遍历
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论