zoukankan      html  css  js  c++  java
  • 函数练习一

    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+"
    ")
            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)
  • 相关阅读:
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    thinkphp使用foreach遍历的方法
    php中foreach中使用&的办法
    thinkphp做搜索功能
    数据库虚拟主机目录的配置文件
    网页响应式设计原理
    数据库常见远程连接问题
  • 原文地址:https://www.cnblogs.com/gxy-9977/p/9651391.html
Copyright © 2011-2022 走看看