Home > Backend Development > Python Tutorial > tuple and list exercise

tuple and list exercise

PHP中文网
Release: 2017-07-06 18:13:48
Original
1420 people have browsed it

Tuple:

1.       __add__

<span style="color: #008080">1</span> a = (1,2,3,4,5,6,7,8,9<span style="color: #000000">,)
</span><span style="color: #008080">2</span> b = (10,11,22,33,44,55,66<span style="color: #000000">,),
</span><span style="color: #008080">3</span> c = (110,112,113,114<span style="color: #000000">,),
</span><span style="color: #008080">4</span> result = a.<span style="color: #800080">__add__</span><span style="color: #000000">(b)
</span><span style="color: #008080">5</span> <span style="color: #0000ff">print</span>(result)             <span style="color: #008000">#</span><span style="color: #008000">(1, 2, 3, 4, 5, 6, 7, 8, 9, (10, 11, 22, 33, 44, 55, 66))  add(b)里面只能加一个参数,否则会报错</span>
<span style="color: #008080">6</span> <span style="color: #0000ff">print</span>(a+b+c)              <span style="color: #008000">#</span><span style="color: #008000">(1, 2, 3, 4, 5, 6, 7, 8, 9, (10, 11, 22, 33, 44, 55, 66), (110, 112, 113, 114))</span>
Copy after login
<span style="color: #008080">1</span> a = (1,2,3,4,5,6,7,8,9<span style="color: #000000">,)
</span><span style="color: #008080">2</span> b = (10,11,22,33,44,55,66<span style="color: #000000">,)
</span><span style="color: #008080">3</span> c = (110,112,113,114<span style="color: #000000">,)
</span><span style="color: #008080">4</span> result = a.<span style="color: #800080">__add__</span><span style="color: #000000">(b)
</span><span style="color: #008080">5</span> <span style="color: #0000ff">print</span>(result)             <span style="color: #008000">#</span><span style="color: #008000">(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 22, 33, 44, 55, 66)  有没有逗号的区别哈哈</span>
<span style="color: #008080">6</span> <span style="color: #0000ff">print</span>(a+b+c)              <span style="color: #008000">#</span><span style="color: #008000">(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 22, 33, 44, 55, 66, 110, 112, 113, 114)</span>
Copy after login

 

The above is the detailed content of tuple and list exercise. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template