We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c9db481 + 65feb9d commit 41023c4Copy full SHA for 41023c4
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