Adding as many examples as I've converted so far.

This commit is contained in:
2022-12-10 17:18:44 -05:00
parent 0aa0875c42
commit 543bc78e51
21 changed files with 161 additions and 3 deletions

View File

@@ -0,0 +1 @@
Build a program that requests a user's name, and then prints a greeting.

View File

@@ -0,0 +1,2 @@
userName = input("Please enter your name: ")
print("Hello " + userName)

View File

View File

@@ -0,0 +1,6 @@
print("Hello World!")
print("This is console out!")
userInput = input("Write some text: ")
print("You wrote: " + userInput)