We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dd66141 + 4adddb6 commit c38177bCopy full SHA for c38177b
Notes/07_Advanced_Topics/01_Variable_arguments.md
@@ -149,7 +149,7 @@ TypeError: __init__() takes exactly 4 arguments (2 given)
149
150
This is easily fixed using `*data` instead. Try this:
151
152
-``python
+```python
153
>>> s = Stock(*data)
154
>>> s
155
Stock('GOOG', 100, 490.1)
@@ -230,4 +230,4 @@ Now, try silencing the errors:
230
>>>
231
```
232
233
-[Contents](../Contents.md) \| [Previous (6.4 Generator Expressions)](../06_Generators/04_More_generators.md) \| [Next (7.2 Anonymous Functions)](02_Anonymous_function.md)
+[Contents](../Contents.md) \| [Previous (6.4 Generator Expressions)](../06_Generators/04_More_generators.md) \| [Next (7.2 Anonymous Functions)](02_Anonymous_function.md)
0 commit comments