From 8ccbd1f8e2bd89b9353a1b91bdd0947b8f568dfa Mon Sep 17 00:00:00 2001 From: Youngjin Han Date: Mon, 18 May 2020 22:29:08 +0900 Subject: [PATCH] Learning Circle : python #1 - ex2 --- youngjin.han/python-the-hard-way/ex2.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 youngjin.han/python-the-hard-way/ex2.py diff --git a/youngjin.han/python-the-hard-way/ex2.py b/youngjin.han/python-the-hard-way/ex2.py new file mode 100644 index 0000000..6f3b06c --- /dev/null +++ b/youngjin.han/python-the-hard-way/ex2.py @@ -0,0 +1,9 @@ +# A comment, this is so you can read your program later. +# Anything after the # is ignored by python. + +print("I could have code like this.") # and the comment after is ignored + +# You can also use a comment to "disable" or comment out code: +# print("This won't run.") + +print("This will run.")