Advertisement
Guest User

Untitled

a guest
Jan 26th, 2017
4,046
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #L9irsh
  2. #this is my first code on python language
  3.  
  4.  
  5.  
  6. db_username="l9irsh"
  7. db_password="12369874"
  8.  
  9. user = input("enter your username : ")
  10. passe = input("enter your password : ")
  11.  
  12.  
  13.  
  14. if user == db_username and passe == db_password :
  15. print("welcome in your account")
  16.  
  17. if user != db_username and passe == db_password :
  18. print("the user name is not available")
  19.  
  20. if user == db_username and passe != db_password :
  21. print("password is error")
  22.  
  23.  
  24. if user != db_username and passe != db_password :
  25. print("this account is not exsting")
  26.  
  27. # == Ilyahoo proshel == thank you
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement