1.写函数,用户传入修改的文件名,与要修改的内容,执行函数,完成整个文件的批量修改操作
import os  ##在最上面引入
def change(file_name,content1,content2):
    with open(file_name, mode="r", encoding="utf-8") as f1,\
        open("file", mode="w", encoding="utf-8") as f2 :
        for line in f1:
            newline=line.replace(content1,content2)
            f2.write(newline)
    os.remove(file_name)
    os.rename("file", file_name)
change("t11","你好","good")

 

2.写一个函数完成三次登陆功能,再写一个函数完成注册功能.
def regist(username,password):#注册函数
    f=open("Username_P",made="r+",encoding="utf-8")
    for line in f :
        if line == "": # 防止空行影响程序运行
            continue
        if username == line.strip().split("_")[0] :#检查用户名是否重复
            print("此用户名已被使用,请重新输入")
            f.close()
            return False
    else:
        f.write(username+"_"+password+"\n")
        f.flush()
        f.close()
        return True

def login(username,password):#登录函数
    f=open("Username_P",mode="r",encoding="utf-8")
    for line in f:
        if line.strip() == username+"_"+password :
            f.close()
            return True
    else:
        f.close()
        return False
for i in range(2,-1,-1):
    username,password=input("请输入你的用户名:"),input("请输入你的密码:")
    if login(username,password):
        print("登录成功")
        break
    else:
        print("用户名或密码错误,你还有%s次机会" % i)