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