Think Python How to Think Like a Computer Scientist


Variable-length argument tuples


Download 1.04 Mb.
Pdf ko'rish
bet112/190
Sana02.11.2023
Hajmi1.04 Mb.
#1740310
1   ...   108   109   110   111   112   113   114   115   ...   190
Bog'liq
thinkpython

12.4
Variable-length argument tuples
Functions can take a variable number of arguments. A parameter name that begins with * gathers
arguments into a tuple. For example, printall takes any number of arguments and prints them:
def printall(*args):
print args
The gather parameter can have any name you like, but args is conventional. Here’s how the function
works:
>>> printall(1, 2.0, '3')
(1, 2.0, '3')
You can combine the gather operator with required and positional arguments:


118
Chapter 12. Tuples
def pointless(required, optional=0, *args):
print required, optional, args
Run this function with 1, 2, 3 and 4 or more arguments and make sure you understand what it does.
The complement of gather is scatter. If you have a sequence of values and you want to pass it to a
function as multiple arguments, you can use the * operator. For example, divmod takes exactly two
arguments; it doesn’t work with a tuple:
>>> t = (7, 3)
>>> divmod(t)
TypeError: divmod expected 2 arguments, got 1
But if you scatter the tuple, it works:
>>> divmod(*t)
(2, 1)
Exercise 12.1
Many of the built-in functions use variable-length argument tuples. For example,
max
and min can take any number of arguments:
>>> max(1,2,3)
3
But sum does not.
>>> sum(1,2,3)
TypeError: sum expected at most 2 arguments, got 3
Write a function called sumall that takes any number of arguments and returns their sum.
12.5
Lists and tuples
zip
is a built-in function that takes two or more sequences and “zips” them into a list
1
of tuples
where each tuple contains one element from each sequence.
This example zips a string and a list:
>>> s = 'abc'
>>> t = [0, 1, 2]
>>> zip(s, t)
[('a', 0), ('b', 1), ('c', 2)]
The result is a list of tuples where each tuple contains a character from the string and the correspond-
ing element from the list.
If the sequences are not the same length, the result has the length of the shorter one.
>>> zip('Anne', 'Elk')
[('A', 'E'), ('n', 'l'), ('n', 'k')]
You can use tuple assignment in a for loop to traverse a list of tuples:
1
In Python 3.0, zip returns an iterator of tuples, but for most purposes, an iterator behaves like a list.



Download 1.04 Mb.

Do'stlaringiz bilan baham:
1   ...   108   109   110   111   112   113   114   115   ...   190




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©fayllar.org 2024
ma'muriyatiga murojaat qiling