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.")