Skip to content

Commit

Permalink
Update Updating to API version 3.0 (Python 3).md
Browse files Browse the repository at this point in the history
Added `print` change
  • Loading branch information
indigo-jay authored Mar 16, 2022
1 parent 304f959 commit fbbca6f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Updating to API version 3.0 (Python 3).md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
**Updating to API version 3.0 (Python 3)** - random things we've run across and definitely not exhaustive
- `print` statement change - in python 3 it requires that the string be enclosed in parens:
```python
# Python 2:
print "some string here"
# Python 2 & 3:
print("some string here")
```


- Exception declarations

Expand Down

0 comments on commit fbbca6f

Please sign in to comment.