Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 222 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 222 Bytes

def friendly_lamp(): print("Hello! I'm your friendly lamp.") name = input("What's your name? ") print(f"Nice to meet you, {name}! I hope you have a great day.")

if name == "main": friendly_lamp()