An algorithm that request a user to input their name and then stores their name in a variable called first name. Subsequently, algorithm should print out first name alone with the phrase "Hello,World".
Such an algorithm may look like this:
FirstName=input("Your first name")
print(FirstName+"Hello, World")
Comments
Leave a comment