Skip to content

Commit 40c3a39

Browse files
authored
Update python-quiz.md (#7212)
updating the explanation on q37 to clarify that '>>>' represents the input.
1 parent e802b7a commit 40c3a39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/python-quiz.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ def sum(a, b):
587587
return a + b
588588
```
589589

590-
**Explanation:** Use `"""` to start and end the docstring and use `>>>` to represent the output. If you write this correctly you can also run the doctest using the build-in doctest module
590+
**Explanation:** Use `"""` to start and end the docstring and use `>>>` to represent the input. If you write this correctly you can also run the doctest using the build-in doctest module
591591

592592
#### Q37. Suppose a Game class inherits from two parent classes: BoardGame and LogicGame. Which statement is true about the methods of an object instantiated from the Game class?
593593

0 commit comments

Comments
 (0)