瀏覽代碼

Update function_varargs.py

dbojan 9 年之前
父節點
當前提交
6e97d4e218
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      programs/function_varargs.py

+ 1 - 1
programs/function_varargs.py

@@ -5,7 +5,7 @@ def total(a=5, *numbers, **phonebook):
     for single_item in numbers:
         print('single_item', single_item)
         
-    #iterate through all items in dictionary    
+    #iterate through all the items in dictionary    
     for first_part, second_part in phonebook.items():
         print(first_part,second_part)