码迷,mamicode.com
首页 > 编程语言 > 详细

python学习笔记2-tuple

时间:2018-03-27 14:49:57      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:登录   color   学习   rip   while   python   name   存在   and   

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

标签:登录   color   学习   rip   while   python   name   存在   and   

原文地址:https://www.cnblogs.com/SuKiWX/p/8656550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!