首页 > 代码库 > 13-day13-str
13-day13-str
python第二天string 笔记整理
str2 = [‘a‘, ‘b‘, ‘c‘]
print(tuple(str2))
print(*str2) # string tuple *
# import getpass
# passs = getpass.getpass(‘>>>:‘) #在pycharm里。这个module是不管用 的
print(1.4e-3) #科学计数法
print(bin(23))
print(oct(23))
print(hex(23)) #进制之间的相互转化
string方法S
strip 去除指定字符,默认为空格
str1 = ‘*****egon****‘
print(str1)
print(str1.strip(‘*‘))
center 剧中显示
str2 = ‘hello world‘
print(str2.center(16, ‘#‘))
count
str3 = ‘hel lo world‘
print(str3.count(‘l‘))
print(str3.count(‘l‘, 0, 14)) # 1,14起始终止位置
endswith()
startwith()
find()
format() 字符串格式化的 format方法
str6 = ‘/var/www/html:root:245k‘
print(‘路径:{},属于: {},大小: {}‘.format(*str6.split(‘:‘)))
print(‘路径:{0},属于: {1},大小: {0}‘.format(*str6.split(‘:‘)))
str7 = ‘name {},age {} ,salary {}‘
str8 = ‘name {0},age {2} ,salary {1}‘
print(str7.format(‘cx2c‘, 18, 12222))
print(str8.format(‘cx2c‘, 18, 12222))
index()
str9 = ‘hello cx2c‘
print(str9.index(‘c‘))
print(str9[str9.index(‘c‘)])
isdigit()
istitle()
issupper()
ljust()
lower()
replace()
split()
swapcase
索引
str11 = ‘abcdefgh‘
print(str11[0:4]) #前半包
print(str11[0:4:2])
作业
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# __author__ = "w.z"
# Date: 2017/6/7
1. 编写for循环,利用索引便利出每一个字符
msg = ‘hello egon 666‘
for i in msg:
print(i, end=‘‘)
for ii in range(0, msg.__len__()):
print(msg[ii], end=‘‘)
print(msg[0:msg.__len__()])
2.编写while循环,利用索引便利出每一个字符
iii = 0
str2 = ‘hello egon 666‘
while iii < str2.__len__():
print(str2[iii], end=‘‘)
iii += 1
3.msg=‘hello alex‘中的alex替换成SB
str3 = ‘hello alex‘
print(str3.replace(‘alex‘, ‘SB‘))
4.msg=‘/etc/a.txt|365|get‘
将该字符的文件名,文件大小,操作方法切割出来
str4 = ‘/etc/a.txt|365|get‘
print(str4.split(‘/‘)[2].split(‘|‘)[0])
print(str4.split(‘/‘)[2].split(‘|‘)[1])
print(str4.split(‘/‘)[2].split(‘|‘)[2])
msg = ‘/etc/a.txt|365|get‘
print("文件名: %s, 文件大小: %s, 操作方法: %s" % tuple(msg.split(‘|‘)))
5.编写while循环,要求用户输入命令,如果命令为空,则继续输入
tag = True
while tag:
input_str = input(‘Please input command: ‘)
if input_str.__len__() == 0 or input_str.isspace() is True:
print(‘‘)
else:
tag = False
print(input_str)
continue
6.编写while循环,让用户输入用户名和密码,如果用户为空或者数字,则重新输入
tag = True
while tag:
u = input(‘Please input your name: ‘)
if u.__len__() == 0 or u.isdigit() or u.isspace():
u = input(‘Please input your name again: ‘)
else:
p = input(‘Please input your password: ‘)
tag = False
7.编写while循环,让用户输入内容,判断输入的内容以alex开头的,则将该字符串加上_SB结尾
tag = True
while tag:
str7 = input(‘Please input str: ‘)
if str7.startswith(‘alex‘):
print(str7+‘_SB‘)
8.
1.两层while循环,外层的while循环,让用户输入用户名、密码、工作了几个月、每月的工资(整数),用户名或密码为空,或者工作的月数不为整数,或者
月工资不为整数,则重新输入
2.认证成功,进入下一层while循环,打印命令提示,有查询总工资,查询用户身份(如果用户名为alex则打印super user,如果用户名为yuanhao或者wupeiqi
则打印normal user,其余情况均打印unkown user),退出功能
3.要求用户输入退出,则退出所有循环(使用tag的方式)
tag = True
while tag:
username = input(‘username >>>: ‘)
password = input(‘password >>>: ‘)
work_months = input(‘months >>>: ‘)
salary = input(‘salary >>>: ‘)
if username.isspace() is True or username.__len__() == 0 or password.isspace() is True or password.__len__() == 0 or work_months.isdigit() is False or salary.isdigit() is False:
print(‘input wrong‘)
else:
while tag:
print(‘1. 查询总工资‘)
print(‘2. 查询用户身份‘)
print(‘3. 退出登录‘)
ss = input()
if ss == ‘1‘:
print(int(salary)*int(work_months))
elif ss == ‘2‘:
username2 = input(‘P l i p user: ‘)
if username2 == ‘alex‘:
print(‘super user‘)
elif username2 == ‘wupeiqi‘ or username2 == ‘yuanhao‘:
print(‘normal user‘)
else:
print(‘unknow user‘)
else:
tag = False
continue
<style>html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video { margin: 0; padding: 0; border: 0 } body { font-family: Helvetica, arial, freesans, clean, sans-serif; font-size: 14px; line-height: 1.6; color: #333; background-color: #fff; padding: 20px; max-width: 960px; margin: 0 auto } body>*:first-child { margin-top: 0 !important } body>*:last-child { margin-bottom: 0 !important } p,blockquote,ul,ol,dl,table,pre { margin: 15px 0 } h1,h2,h3,h4,h5,h6 { margin: 20px 0 10px; padding: 0; font-weight: bold } h1 tt,h1 code,h2 tt,h2 code,h3 tt,h3 code,h4 tt,h4 code,h5 tt,h5 code,h6 tt,h6 code { font-size: inherit } h1 { font-size: 28px; color: #000 } h2 { font-size: 24px; border-bottom: 1px solid #ccc; color: #000 } h3 { font-size: 18px } h4 { font-size: 16px } h5 { font-size: 14px } h6 { color: #777; font-size: 14px } body>h2:first-child,body>h1:first-child,body>h1:first-child+h2,body>h3:first-child,body>h4:first-child,body>h5:first-child,body>h6:first-child { margin-top: 0; padding-top: 0 } a:first-child h1,a:first-child h2,a:first-child h3,a:first-child h4,a:first-child h5,a:first-child h6 { margin-top: 0; padding-top: 0 } h1+p,h2+p,h3+p,h4+p,h5+p,h6+p { margin-top: 10px } a { color: #4183C4; text-decoration: none } a:hover { text-decoration: underline } ul,ol { padding-left: 30px } ul li>:first-child,ol li>:first-child,ul li ul:first-of-type,ol li ol:first-of-type,ul li ol:first-of-type,ol li ul:first-of-type { margin-top: 0px } ul ul,ul ol,ol ol,ol ul { margin-bottom: 0 } dl { padding: 0 } dl dt { font-size: 14px; font-weight: bold; font-style: italic; padding: 0; margin: 15px 0 5px } dl dt:first-child { padding: 0 } dl dt>:first-child { margin-top: 0px } dl dt>:last-child { margin-bottom: 0px } dl dd { margin: 0 0 15px; padding: 0 15px } dl dd>:first-child { margin-top: 0px } dl dd>:last-child { margin-bottom: 0px } pre,code,tt { font-size: 12px; font-family: Consolas, "Liberation Mono", Courier, monospace } code,tt { margin: 0 0px; padding: 0px 0px; white-space: nowrap; border: 1px solid #eaeaea; background-color: #f8f8f8 } pre>code { margin: 0; padding: 0; white-space: pre; border: none; background: transparent } pre { background-color: #f8f8f8; border: 1px solid #ccc; font-size: 13px; line-height: 19px; overflow: auto; padding: 6px 10px } pre code,pre tt { background-color: transparent; border: none } kbd { background-color: #DDDDDD; background-image: linear-gradient(#F1F1F1, #DDDDDD); background-repeat: repeat-x; border-color: #DDDDDD #CCCCCC #CCCCCC #DDDDDD; border-style: solid; border-width: 1px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; line-height: 10px; padding: 1px 4px } blockquote { border-left: 4px solid #DDD; padding: 0 15px; color: #777 } blockquote>:first-child { margin-top: 0px } blockquote>:last-child { margin-bottom: 0px } hr { clear: both; margin: 15px 0; height: 0px; overflow: hidden; border: none; background: transparent; border-bottom: 4px solid #ddd; padding: 0 } table th { font-weight: bold } table th,table td { border: 1px solid #ccc; padding: 6px 13px } table tr { border-top: 1px solid #ccc; background-color: #fff } table tr:nth-child(2n) { background-color: #f8f8f8 } img { max-width: 100% }</style>
13-day13-str
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。