diff --git a/lib/tasks/project_components/hello_world_example/main.py b/lib/tasks/project_components/hello_world_example/main.py index 16bde3d5a..d84bb32bd 100644 --- a/lib/tasks/project_components/hello_world_example/main.py +++ b/lib/tasks/project_components/hello_world_example/main.py @@ -13,11 +13,10 @@ # Function definitions def roll_dice(): - max = input('How many sides?: ') # Wait for input from the user + max = input('How many sides for a 🎲?: ') # Wait for input from the user print('Rolling a', max, 'sided dice ...') # Use the number the user entered roll = randint(1, int(max)) # Generate a random number between 1 and 6 - print('You rolled a', roll) # Print the value of the roll variable - print('🔥' * roll) # Repeat the fire emoji to match the dice roll + print(roll, '🔥' * roll) # Repeat the fire emoji to match the dice roll # Put code to run under here print('Hello', world) @@ -27,6 +26,6 @@ def roll_dice(): print('The 📅 🕒 is', datetime.now()) # Print with emojis roll_dice() # Call the roll dice function -print('I ❤️ ...') -print('... makes me 😃') -print('I\'d like to make ... with', python) +print('I ❤️ rainbows 🌈') +print('Unicorns 🦄 make me 😃') +print('I\'d like to make a story 📖 with', python) diff --git a/lib/tasks/project_components/hello_world_starter/main.py b/lib/tasks/project_components/hello_world_starter/main.py index 4a5b83ef2..3d85548fc 100644 --- a/lib/tasks/project_components/hello_world_starter/main.py +++ b/lib/tasks/project_components/hello_world_starter/main.py @@ -15,3 +15,17 @@ # Put code to run under here + + + + + + + + + + + + + +