Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Thomas Kennedy
python-workshop
Wiki
Python Workshop
Python Workshop
· Changes
Page history
Tweak OOP table
authored
Oct 02, 2020
by
Thomas Kennedy
Show whitespace changes
Inline
Side-by-side
Python-Workshop.md
View page @
11de805b
...
...
@@ -62,7 +62,7 @@ point3 = (1, 7)
points
=
[
point1
,
point2
,
point3
]
for
point
in
points
:
print
(
sqrt
(
point
.
x
**
2
+
point
.
y
**
2
))
print
(
sqrt
(
point
[
0
]
**
2
+
point
[
1
]
**
2
))
```
...
...