Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions Submissions/AlexTong
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

##################################################
# This script shows an example of a header and library section. The library section would grow according to
# the number of libraries you need to make your code work
##################################################
#
##################################################
# Author: Alex Tong
# Copyright: Copyright 2020, IAAC
# Credits: [Institute for Advanced Architecture of Catalonia - IAAC, Advanced Architecture group]
# License: Apache License Version 2.0
# Version: 1.0.0
# Maintainer: Alex Tong
# Email: tongalex16@aol.com
# Status: development
##################################################

# End of header section

city_name = 'HongKong'
city_area = 2000
city_population = 7500000
city_density = city_population/city_area

print('My city is Hong Kong')
print('The area of the is:')
print(city_area)
print('The population is:')
print(city_population)
print('....................\n')

print('The density of the city is')
print(city_density)