Browse Source

init

master
Ken Schaefer 1 year ago
parent
commit
3e39516fa4
  1. 6
      basics/hello.py

6
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));
Loading…
Cancel
Save