Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 378 Bytes

File metadata and controls

15 lines (12 loc) · 378 Bytes

hello-world

print("Introduce Yourself") user_name = input("> ") print("My name is %s" % username) print("I'm learning how to program and more about") print("data science. I'm taking online courses across") print("multiple MOOC platforms to change my career.") print("What about you?)

about_you = input("> ") print(" Nice! You said %s" % about_you)

print("goodbye") exit(0)