Practical Challenges 1

<< Previous: InputNext: Substrings >>

About the challenges

The challenges below allow you to apply your knowledge of the topics up to this point. Click remix to write your code and run to view its output.

Challenge 1: Personal greeting





name = input("Enter your name: ")
print(f"Hello {name}")

Challenge 2: Story time





hero = input("Enter the hero's name: ")
place = input("Enter the place where it happened: ")
pet = input("Enter the type of pet the hero had: ")
when = input("How long ago did this story take place? ")
print(f"{when} years ago on {place} there lived a brave hero called {name} who travelled around with his pet {pet}.")
<< Previous: InputNext: Substrings >>

© All materials created by and copyright S.Goff