函数小练习

函数小练习

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)

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值