python 3 元组
Posted effortsing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 3 元组相关的知识,希望对你有一定的参考价值。
1、创建元祖 tup1 = (‘jenkins‘,‘mysql‘) print(tup1) ssh://[email protected]:22/usr/bin/python -u /home/progect/app/py_code/test1.py (‘jenkins‘, ‘mysql‘) Process finished with exit code 0 2、访问元祖 tup1 = (‘jenkins‘,‘mysql‘) print(tup1[0]) ssh://[email protected]:22/usr/bin/python -u /home/progect/app/py_code/test1.py jenkins Process finished with exit code 0
以上是关于python 3 元组的主要内容,如果未能解决你的问题,请参考以下文章
python基础之--元组(tuple),python小白必看!