From 52c2b26563844b0ac71e2db4b93a0a3f44600de1 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Tue, 13 Oct 2009 17:10:26 -0400 Subject: [PATCH] typo --- your-first-python-program.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/your-first-python-program.html b/your-first-python-program.html index f2f340c..53efe24 100755 --- a/your-first-python-program.html +++ b/your-first-python-program.html @@ -87,7 +87,7 @@ if __name__ == '__main__':

Optional and Named Arguments

-

Python allows function arguments to have default values; if the function is called without the argument, the argument gets its default value. Futhermore, arguments can be specified in any order by using named arguments. +

Python allows function arguments to have default values; if the function is called without the argument, the argument gets its default value. Furthermore, arguments can be specified in any order by using named arguments.

Let’s take another look at that approximate_size() function declaration: