This commit is contained in:
Mark Pilgrim
2009-10-13 17:10:26 -04:00
parent 2e88340bcf
commit 52c2b26563
+1 -1
View File
@@ -87,7 +87,7 @@ if __name__ == '__main__':
<h3 id=optional-arguments>Optional and Named Arguments</h3>
<p>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.
<p>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.
<p>Let&#8217;s take another look at that <code>approximate_size()</code> function declaration: