From 3e39516fa4ab0909bf9101ebcb5a77d013948839 Mon Sep 17 00:00:00 2001 From: Ken Schaefer Date: Mon, 7 Aug 2023 16:07:21 -0500 Subject: [PATCH] init --- basics/hello.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 basics/hello.py diff --git a/basics/hello.py b/basics/hello.py new file mode 100644 index 0000000..eadc6e5 --- /dev/null +++ b/basics/hello.py @@ -0,0 +1,6 @@ +print ('Hello World!') +print ('What is your name?') +myName = input() +print ('It is good to meet you ' + myName) +print ('The length of your name is: ') +print (len(myName)); \ No newline at end of file