摘要:
lp='''You hid your skeletons, when I had shown you mineyou woke the devil that I thought you left behindI saw the evidence the crimson soaking through 阅读全文
摘要:
实例: 下载一首英文的歌词或文章,将所有,.?!等替换为空格,将所有大写转换为小写,统计某几个单词出现的次数,分隔出一个一个的单词。 lp='''You hid your skeletons, when I had shown you mine you woke the devil that I t 阅读全文
摘要:
e=input("明文:")print("密文:",end="")for i in e: if(ord('a')<=ord(i)<=ord('z')): print(chr(ord('a')+(ord(i)-ord('a')+3)%26),end="") else: print(i,end='') 阅读全文
摘要:
画五角星 import turtle for i in range(5): turtle.forward(50) turtle.right(144) 画同心圆 import turtle for i in range(5): turtle.up() turtle.goto(50,-20*(i+1)) turtle.down() ... 阅读全文