Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c38177b

Browse files
authored
Merge pull request dabeaz-course#18 from vpoulailleau/patch-1
Markdown typo
2 parents dd66141 + 4adddb6 commit c38177b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Notes/07_Advanced_Topics/01_Variable_arguments.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ TypeError: __init__() takes exactly 4 arguments (2 given)
149149

150150
This is easily fixed using `*data` instead. Try this:
151151

152-
``python
152+
```python
153153
>>> s = Stock(*data)
154154
>>> s
155155
Stock('GOOG', 100, 490.1)
@@ -230,4 +230,4 @@ Now, try silencing the errors:
230230
>>>
231231
```
232232

233-
[Contents](../Contents.md) \| [Previous (6.4 Generator Expressions)](../06_Generators/04_More_generators.md) \| [Next (7.2 Anonymous Functions)](02_Anonymous_function.md)
233+
[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

Comments
 (0)