You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
215 B

user_name = input("Please type your name: ")
user_food = input("Please type your favorite food: ")
file = open("about_me.txt", "w")
file.write("My name is " + user_name + " and my favorite food is " + user_food)