python实现的凯撒密码和内置的字符串处理方法

python实现的凯撒密码(明文——密文)

plaincode = input("请输入明文:")
print("密文是:")
for p in plaincode:
    if ord("a")<=ord(p)<=ord("z"):#p要是字母,unicode编码
        print(chr(ord("a")+(ord(p)-ord("a")+3)%26),end='')#主要看这个
    else:
        print(p,end='')

python实现的凯撒密码(密文——明文)
plaincode = input("请输入密文:")
print("明文是:")
for p in plaincode:
    if ord("a")<=ord(p)<=ord("z"):#p要是字母,unicode编码
        print(chr(ord("a")+(ord(p)-ord("a")-3)%26),end='')#主要看这个
    else:
        print(p,end='')

内置的字符串处理方法
str.lower() 返回字符串str的副本,全部字符小写
str.upper() 返回字符串str的副本,全部字符大写
str.islower() 当str所有的字符都是小写时,返回true,否则返回False
str.isprintable() 当str所有字符都是可打印的,返回True,否则返回False
str.isnumeric() 当str所有字符都是数字时,返回True,否则返回False
str.isspace() 当str所有字符都是空格时,返回true,否则返回false
str.endswith(suffix[,start[,end]]) 以suffix结尾返回true,否则返回false
str.startswith(prefix[,start[,end]]) 以prefix开头返回true,否则返回false
str.count(sub[,start[,end]]) 返回str[start:end]中sub字串出现的次数
str.replace(old,new[,count]) 返回字符串str的副本,所有old子串被替换成new,如果count给出,则前count次old出现被替换
str.strip([chars]) 返回字符串str的副本,长度为width,不足部分在左侧添零

你可能感兴趣的:(python)