From 79a3c80eed04b0325272909c3d5ff4bbd07986b9 Mon Sep 17 00:00:00 2001 From: kjg Date: Mon, 18 May 2020 22:41:27 +0900 Subject: [PATCH] [Python #1] create ex1 --- kjg/python-the-hard-way/e1.py | 7 +++++++ kjg/python.org | 19 +++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 kjg/python-the-hard-way/e1.py create mode 100644 kjg/python.org diff --git a/kjg/python-the-hard-way/e1.py b/kjg/python-the-hard-way/e1.py new file mode 100644 index 0000000..6986148 --- /dev/null +++ b/kjg/python-the-hard-way/e1.py @@ -0,0 +1,7 @@ +print("Hello World!") +print("Hello Again") +print("I like typing this.") +print("This is fun.") +print('Yay! Printing.') +print("I'd much rather you 'not'.") +print('I "said" do not touch this.') diff --git a/kjg/python.org b/kjg/python.org new file mode 100644 index 0000000..13d37bc --- /dev/null +++ b/kjg/python.org @@ -0,0 +1,19 @@ +*python + +*** Python #1: +**** ex0 +**** ex1 +>>> print("Hello World!") +... print("Hello Again") +... print("I like typing this.") +... print("This is fun.") +... print('Yay! Printing.') +... print("I'd much rather you 'not'.") +... print('I "said" do not touch this.') +Hello World! +Hello Again +I like typing this. +This is fun. +Yay! Printing. +I'd much rather you 'not'. +I "said" do not touch this.