Skip to content

Commit

Permalink
fix readme to python3
Browse files Browse the repository at this point in the history
  • Loading branch information
pelodelfuego committed Jan 25, 2018
1 parent e9ca447 commit 3799ee8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def circle_area(r):
*Cell 3 - in the context of the notebook, we can run some experiement*<br>
*We can then use these functions normally*
```
print circle_perim(2.)
print circle_area(2.2)
print(circle_perim(2.))
print(circle_area(2.2))
```
*The results won't be saved into the file*

Expand Down

0 comments on commit 3799ee8

Please sign in to comment.