python学习笔记2-tuple

Posted 背着吉他的王小可

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习笔记2-tuple相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记:python3,代码片段(2017)

Python 学习笔记 -- 序列的基本使用

python学习笔记012——pdb调试

Python 3学习笔记

Python学习----List和Tuple类型

python 机器学习有用的代码片段