Skip to content

Instantly share code, notes, and snippets.

@zxx
Created March 16, 2020 15:01
Show Gist options
  • Save zxx/b08f22e5b611f63031419b8efc01b024 to your computer and use it in GitHub Desktop.
Save zxx/b08f22e5b611f63031419b8efc01b024 to your computer and use it in GitHub Desktop.
#!/usr/bin/python3
from prettytable import PrettyTable
x = PrettyTable()
x.field_names = ["City name", "Area", "Population", "Annual Rainfall"]
x.add_row(["Adelaide", 1295, 1158259, 600.5])
x.add_row(["Brisbane", 5905, 1857594, 1146.4])
x.add_row(["Darwin", 112, 120900, 1714.7])
x.add_row(["Hobart", 1357, 205556, 619.5])
x.add_row(["Sydney", 2058, 4336374, 1214.8])
x.add_row(["Melbourne", 1566, 3806092, 646.9])
x.add_row(["Perth", 5386, 1554769, 869.4])
print(x)
@zxx
Copy link
Author

zxx commented Mar 16, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment