From 033057a07948a6ee879fe69ccf5977c924171837 Mon Sep 17 00:00:00 2001 From: HaiderSaad Date: Fri, 12 Oct 2018 12:43:58 +0300 Subject: [PATCH 1/2] Create 1 --- 1 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 1 diff --git a/1 b/1 new file mode 100644 index 0000000..75ad39e --- /dev/null +++ b/1 @@ -0,0 +1,7 @@ +def main(): + print("haider") + print("hello world") + print("hello from python") + + +if __name__ == '__main__':main() From 681c87b1989f96f5dc60145d4b0a207dce733096 Mon Sep 17 00:00:00 2001 From: HaiderSaad Date: Fri, 12 Oct 2018 13:09:48 +0300 Subject: [PATCH 2/2] Add files via upload --- object.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 object.py diff --git a/object.py b/object.py new file mode 100644 index 0000000..01debae --- /dev/null +++ b/object.py @@ -0,0 +1,6 @@ +name="haider" +print(name,type(name)) +age=18 +print(age,type(age)) +x=76.35 +print(x,type(x)) \ No newline at end of file