Explorar o código

[Minor] Splitting comment to 2 lines for visibility

Thanks to Tanmay Dharmaraj for bringing this to my attention.
Swaroop C H %!s(int64=12) %!d(string=hai) anos
pai
achega
2fa3a80c27
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      09-functions.md

+ 2 - 1
09-functions.md

@@ -359,7 +359,8 @@ def total(initial=5, *numbers, extra_number):
 
 total(10, 1, 2, 3, extra_number=50)
 total(10, 1, 2, 3)
-# Raises error because we have not supplied a default argument value for 'extra_number' #
+# Raises error because we have not supplied a
+# default argument value for 'extra_number'
 ~~~
 
 Output: