字符串基本操作

Posted 陈华斐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串基本操作相关的知识,希望对你有一定的参考价值。

1.已知‘星期一星期二星期三星期四星期五星期六星期日 ’,输入数字(1-7),输出相应的‘星期几’

a=\'星期一星期二星期三星期四星期五星期六星期日\'
d=int(input(\'1-7:\'))
print(a[3*(d-1):3*d])

2.输入学号,识别年级、专业、班级、序号

s=input("please input your student number:")
print("年级",s[:4])
print("专业",s[4:8])
print("班级",s[-2:])
print("序号是",s[10:12])

3.输入身份证号,识别地区、年龄、性别

id=input("请输入十八位身份证号码:")
print("地区是:",id[0:6])
print("年龄是:",2017-int(id[6:10]))
print("性别是:",id[17])

 4.len(),eval(),+,*,in,chr(),转义\\n\\t\\\\

len():

s=input(\'python\');
if len(s)<6:
print(\'s\')

eval():

a = eval(input(\'输入数字1-7:\'))
d= "星期一星期二星期三星期四星期五星期六星期日"
print(\'今天是\'+d[(a-1)*3:((a-1)*3)+3])

+:

s=\'https;//docs.python.org/3.6/library/\'
>>> t=\'.html\'
>>> addr=s+\'turtle\'+t
>>> print(addr)
https;//docs.python.org/3.6/library/turtle.html
>>> print(s+\'numeric\'+t)
https;//docs.python.org/3.6/library/numeric.html

*:

n=\'红红火火恍恍惚惚\'
>>> n*3

in:

for i in \'turtle\':
print(i)

 

cha():for i in range (12):
print(chr(9800+i))

 

5.输出全部的星座符号,以反斜线分隔。

for i in range (12):
print(chr(9800+i))

 

以上是关于字符串基本操作的主要内容,如果未能解决你的问题,请参考以下文章

python基础之 列表元组操作 字符串操作 字典操作 集合操作 文件操作 字符编码与转码

python基础10 字符串操作,字典操作,集合操作

Java学习之IO流(其他操作流 操作基本数据类型操作字节数组操作字符数组操作字符串)

字符串的基本操作实验

字符串的基本操作实验

30 字符串的基本操作 格式化字符串(%,Template类,format方法*****)