Skip to content

Instantly share code, notes, and snippets.

Created July 12, 2017 14:55
Show Gist options
  • Save anonymous/f83ad137ecf4c26b63880a295ba11bad to your computer and use it in GitHub Desktop.
Save anonymous/f83ad137ecf4c26b63880a295ba11bad to your computer and use it in GitHub Desktop.
getopt1 created by britodfbr - https://repl.it/JYb1/1
#!/usr/bin/python3
dic = {'Name': 'Turtle', 'Age': 7}
print ("Nome : {: >14}".format(dic.get('Name', "Never")))
print ("Idade : {: >8}".format(dic.get('Age')))
print ("Escolaridade : {}".format(dic.get('Education', "Never")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment