1. 程式人生 > >python學習筆記2-tuple

python學習筆記2-tuple

python學習 username name pri 127.0.0.1 str 例子 () 不能

tuple:

#元組也是List,但是值不能變
a=(123,234,1234)
print(a[1])

mysql=(127.0.0.1,3306,‘‘root,123456)
print(mysql.count(root))


#例子
all_user={}
while True:
    username=input(username:).strip()
    passwd=input(passwd:).strip()
    cpwd=input(cpwd:).strip()
    if username and pwd and cpwd:
        
if username in all_user: print(用戶名已經存在) else: if pwd==cpwd : all_user[username]=passwd else: print(兩次密碼不一致) else: print(賬號密碼不能空) #登錄例子 all_users={} while True: username=input(username:).strip() passwd
=input(passwd:).strip() if username and passwd: if username in all_users: passwd=all_users[username] if passwd==all_users[username]: print(登錄成功) break else: print(密碼錯誤) else: print(用戶名不存在)
else: print(用戶密碼不能為空)

python學習筆記2-tuple