tip-calculator-end
Made with NixClick "Run" to see how your program should behave. Click "Show files" to see the solution code.
Want to join the course? Start your journey here: https://100daysofpython.dev/
Recent comments (0)day-8-start
Made with NixWant to join the course? Start your journey here: https://100daysofpython.dev/
Recent comments (12)Bigbenix2 years agodef greet(name, location): print(f"Hello {name}") print("How are you doing? I missed you") print(f"Here. I bought you {2} houses in {location}") greet(name = "Rihanna", location = "Lagos")
Bigbenix2 years agodef greet(name, location): print(f"Hello {name}") print("How are you doing? I missed you") print(f"Here. I bought you {2} houses in {location}") greet("Rihanna", "Lagos")
Bigbenix2 years agodef greet(): print("Hello friend") print("How are you doing? I missed you") print(f"Here. I bought you {2} houses") greet()
Baykus2 years agodef greet():
for i in range(3):
print(f"Hello {i}")greet()
Rodolphe332 years agodef greet():
i = 0while i < 3:i += 1print("i")greet()
JohnCrubaugh2 years agodef greet(): print("hello") print("world") print("john is awesome")
greet()
Shausthav2 years agodef greet_with(name,location): print(f"Hello {name}") print(f"What is the weather today in {location}?")
greet_with("Shausthav", "Dibrugarh")
BryceEvans12 years agodef greet(): name = input("What is your name?") day = input("What day is it?") sun = input("Is is morning, afternoon, or evening?") print(f'Good {sun} {name}. How is your {day}?') print("Isn't the weather lovely?") print("Have a nice day.") greet()
Alduin03462 years agodef greet():
print("Hello\n","How are you?\n","Goodbye")
greet()
benjaminmann32 years agodef greet():
print('Hello!')print('Nice to meet you.')print('How are you?')greet()
band-name-generator-end
Made with NixClick "Run" to see how your program should behave. Click "Show files" to see the solution code.
Want to join the course? Start your journey here: https://100daysofpython.dev/
Recent comments (0)