Skip to content

Instantly share code, notes, and snippets.

@mattmc3
Created April 6, 2017 15:08
Show Gist options
  • Select an option

  • Save mattmc3/09d9894a47dc3c033fa159d74d1a1c1f to your computer and use it in GitHub Desktop.

Select an option

Save mattmc3/09d9894a47dc3c033fa159d74d1a1c1f to your computer and use it in GitHub Desktop.
Python2 hello world
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
DOCSTRING
"""
from __future__ import print_function
from __future__ import unicode_literals
from __future__ import division
from __future__ import absolute_import
#import blah
def main():
print('Hello world!')
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment