Skip to content
Open navbar menu
Sign UpLog In
Profile icon

App Brewery

Hacker
@appbrewery
Learn to code through building real-world projects!
  • tip-calculator-end

    Cover page
    Made with Nix

    Click "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

    Cover page
    Made with Nix

    Want to join the course? Start your journey here: https://100daysofpython.dev/

    Recent comments (12)
    Bigbenix
    Bigbenix
    2 years ago

    def 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")

    Bigbenix
    Bigbenix
    2 years ago

    def 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")

    Bigbenix
    Bigbenix
    2 years ago

    def greet(): print("Hello friend") print("How are you doing? I missed you") print(f"Here. I bought you {2} houses") greet()

    Baykus
    Baykus
    2 years ago

    def greet():

    for i in range(3):

    print(f"Hello {i}")

    greet()

    Rodolphe33
    Rodolphe33
    2 years ago

    def greet():

    i = 0
     
    while i < 3:
     
    i += 1
     
    print("i")

    greet()

    JohnCrubaugh
    JohnCrubaugh
    2 years ago

    def greet(): print("hello") print("world") print("john is awesome")

    greet()

    Shausthav
    Shausthav
    2 years ago

    def greet_with(name,location): print(f"Hello {name}") print(f"What is the weather today in {location}?")

    greet_with("Shausthav", "Dibrugarh")

    BryceEvans1
    BryceEvans1
    2 years ago

    def 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()

    Alduin0346
    Alduin0346
    2 years ago

    def greet():

    print("Hello\n","How are you?\n","Goodbye")

    greet()

    benjaminmann3
    benjaminmann3
    2 years ago

    def greet():

    print('Hello!')
     
    print('Nice to meet you.')
     
    print('How are you?')

    greet()

  • band-name-generator-end

    Cover page
    Made with Nix

    Click "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)
Repls
Community
All Repls