From b5b7c9eb13270490577750b1aa6eaab14a7be261 Mon Sep 17 00:00:00 2001 From: AlexTong678 <76744460+AlexTong678@users.noreply.github.com> Date: Sun, 3 Jan 2021 11:29:04 +0800 Subject: [PATCH] Create AlexTong --- Submissions/AlexTong | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Submissions/AlexTong diff --git a/Submissions/AlexTong b/Submissions/AlexTong new file mode 100644 index 0000000..d5bc21a --- /dev/null +++ b/Submissions/AlexTong @@ -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)