Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #My first python code
- from __future__ import print_function #Compatibilidade func print python 2/3
- from sys import version_info
- print ('\n', '--- ' * 7);
- print ('Bem vindo ao mundo python.')
- print('Voce esta na versao:', '.'.join(str(x) for x in version_info[0:3]))
- print ('Vamos em frente!\n', '--- ' * 7, '\n');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement