We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9db481 commit 65feb9dCopy full SHA for 65feb9d
1 file changed
README.md
@@ -14,16 +14,12 @@ pip install hexlet-points
14
15
<!-- This code will be doctested. Do not touch the markup! -->
16
17
- >>> from hexlet import points
18
- >>> p = points.make(100, 200)
19
- >>> print(points.to_string(p))
20
- (100, 200)
21
- >>> points.get_x(p)
22
- 100
23
- >>> points.get_y(p)
24
- 200
25
- >>> points.get_quadrant(p)
26
- 1
+ from hexlet import points
+ p = points.make(100, 200)
+ print(points.to_string(p)) # (100, 200)
+ points.get_x(p) # 100
+ points.get_y(p) # 200
+ points.get_quadrant(p) # 1
27
28
[](https://ru.hexlet.io/pages/about)
29
0 commit comments