Python이 "money.py" 파일에서 다른 사용자를 구별하도록 하려면 어떻게 해야 합니까?

Python이 "money.py" 파일에서 다른 사용자를 구별하도록 하려면 어떻게 해야 합니까?

내 코드는 다음과 같습니다.

f= open("Passes.py", "a+")
m=open("money.py","a+")
passes= {}
init={}
initial=0
import time
wait=time.sleep(0.5)
print "Welcome to the virtual banking system"
wait
user=raw_input("Would you like to create a new account? 'Y/N'").lower()
if user== "y":
  new_user= raw_input("Create a username:")
  new_pass= raw_input("Create a password:")
  p= passes[new_user]= new_user + ":" + new_pass
  f.write("\n"+p)
  ask=raw_input("Would you like to sign into your account? 'Y/N'").lower()
  if ask=="y":
    user_in=raw_input("Enter your username:")
    if user_in==new_user:
      pass_in=raw_input("Enter your password:")
      if pass_in==new_pass:
        running=True
        while running:
          print "Welcome to your account" + " " + new_user
          useropt=raw_input("Would you like to view your balance- enter 1, deposit money- enter 2 or withdraw money- enter 3:")
          if useropt=="1":
            print "Your balance is:", initial
            m.write("\n"+str(initial))
          if useropt=="2":
            m.close()
            u=open("money.py","r+")
            amountdep= int(raw_input("How much money would you like to deposit?:"))
            initial+=amountdep
            print "Thanks. Your new balance is:", initial
            u.write(str(initial)+"\n")
          if useropt=="3":
            m.close()
            r=open("money.py","r+")
            amountwith=int(raw_input("How much would you like to withdraw?:"))
            initial-=amountwith
            if initial>=0:
              print "Your balance is:", initial
              r.write(str(initial)+"\n")
            else:
              print "Sorry, this amount cannot be withdrawn. Balance cannot be less than 0"
          cont = raw_input("Would you like to do another operation? 'Y/N'").lower()
          running = cont == "y"
      else:
        print "Password not valid"

    else:
      print "Username does not exist"

  else:
    print "Thanks for using the virtual bank."

else:
  user2=raw_input("Do you have an existing account? 'Y/N'").lower()
  if user2=="y":
    existing_user=raw_input("Enter your username:")
    exisitng_pass=raw_input("Enter your password:")
    for passwords in f:
      if passwords==existing_user+":"+exisitng_pass:
        run=True
        while run:
          print "Welcome to your account" + " " + existing_user
          with open("money.py", "r") as m:
            info= int(m.readline().strip())
            useropt2=raw_input("Would you like to view your balance- enter 1, deposit money- enter 2 or withdraw money- enter 3:")
            if useropt2=="1":
              print "Your balance is:", info
            if useropt2=="2":
              amountdep= int(raw_input("How much money would you like to deposit?:"))
              a=info+int(amountdep)
              print "Your new balance is:", a
              with open("money.py", "w") as m:
                  m.write(str(a))
            if useropt2=="3":
              amountwith=int(raw_input("How much would you like to withdraw?:"))
              t=info-int(amountwith)
              if t>=0:
                print "Your balance is:", t
                with open("money.py", "w") as m:
                  m.write(str(t))
              else:
                print "Sorry, this amount cannot be withdrawn. Balance cannot be less than 0"
            restart = raw_input("Would you like to do another operation? 'Y/N'").lower()
            run = restart == "y"
      else:
        print "Invalid username or password"
  else:
    print "Thanks for using the virtual bank."

두 개의 파일이 있는데 그 중 하나가 "money.py"입니다. 이 파일에는 내 사용자 계정의 총 금액이 저장됩니다. 문제는 현재 내 프로그램에서 두 명의 사용자와 그들의 돈을 구별할 수 있는 방법이 없다는 것입니다. 이 프로그램은 단지 전체 금액의 정수 값만 저장하기 때문입니다. 또한 사용자 이름을 입력하고 금액을 입력해 보았지만 문자열과 정수가 혼합되어 있으므로 작동하지 않는 것으로 나타났습니다. 다른 사용자를 구별할 수 있는 방법이 있습니까? 감사해요.

답변1

이 질문은 stackoverflow에 넣는 것이 더 좋았을 것입니다.

내 제안은 잔액을 사전에 저장 balances[user] = amount하고 json모듈을 사용하여 파일에서 잔액을 읽고 쓰는 것입니다.

로드하려면:

with open("money.py", "r") as moneyfile:
    balances = json.load(moneyfile)

저장하려면:

with open("money.py", "w") as moneyfile:
    json.dump(balances, moneyfile)

참고: .pyPython 소스 코드에 사용되는 확장입니다. 데이터를 저장하려면 다른 확장이 선호됩니다. 예: .txt또는.dat

관련 정보