Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Python 3.6.8 (default, Jan 14 2019, 11:02:34)
  2. [GCC 8.0.1 20180414 (experimental) [trunk revision 259383]] on linux
  3. Type "help", "copyright", "credits" or "license" for more information.
  4. >>> import boto3
  5. >>> print boto3.__version__
  6. File "<stdin>", line 1
  7. print boto3.__version__
  8. ^
  9. SyntaxError: Missing parentheses in call to 'print'. Did you mean print(boto3.__version__)?
  10. >>> print(boto3.__version__)
  11. 1.9.70
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement