Commit cb880813 by BellCodeEditor

auto save

parent eb71df5b
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -10,4 +10,4 @@ print(students)
red = students[:2]
blue =students[-2:]
print(red)
print(blue)
print(blue)
\ No newline at end of file
opq=open(r"C:\Users\55428\Desktop\wqer.txt","w",encoding="utf-8")
opq.write("小发:12")
opq.close()
\ No newline at end of file
wqer=open(r"C:\Users\55428\Desktop\txt.txt","w",encoding="utf-8")
wqer.write("趣味:13\n")
wqer.close()
wqer=open(r"C:\Users\55428\Desktop\txt.txt","a",encoding="utf-8")
wqer.write("李明:15\n")
wqer.close()
with open(r"C:\Users\55428\Desktop\txt.txt","a",encoding="utf-8") as wqer:
wqer.write('小兰:12\n')
with open(r"C:\Users\55428\Desktop\txt.txt","r",encoding="utf-8") as wqer:
a=wqer.read()
print(a)
n=''
with open(r"C:\Users\55428\Desktop\txt.txt","r",encoding="utf-8") as wqer:
for bate in wqer:
if"趣味:13" in bate:
bate=bate.replace('趣味:13','趣味:11')
n+=bate
with open(r"C:\Users\55428\Desktop\txt.txt","w",encoding="utf-8") as wqer:
wqer.write(n)
\ No newline at end of file
import random
ggg=""
sbbb="去微软推哦看脚后跟范德萨是围绕太阳金牛和感觉到你吃个蛋糕每个女生的歌你才能分为法国去幻想空间的法国网球几个女生"
z="我是练习两年半的实习生,坤坤🤷‍♀️ 🤷‍♀️ 🤷‍♀️,喜欢唱跳rap打🏀 🏀 🏀 🏀球.鸡🐔你太美"
q11="gfffxfgbfcbabcfjxsdfjwhnjajasfsdgudhfxgwjfubweue3chgcfcewgfiwfnwvfcibbietcvugfvniuctfraieufeayurng"
z="锄禾日当午,汗滴禾下土。谁知盘中餐,粒粒皆辛苦"
for i in z:
nnn=i
tyt=random.choice(sbbb)
ty=random.choice(sbbb)
sgsgsg=nnn+tyt+ty
ggg=ggg+sgsgsg
print(ggg)
ed=list(ggg)
ed.insert(random.randint(0,len(ed)),q11)
r="".join(ed)
print(r)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment