the-honk/school/gcse/year 9/python challenges/25 - After-school club sign-up.py

17 lines
439 B
Python
Raw Normal View History

2021-05-28 20:38:55 +00:00
import uuid
# ask for the information
firstName = input('What is your first name?')
lastName = input('What is your last name?')
gender = input('What is your gender?')
form = input('What is your form?')
# save the information in a file
f = open('registration-' + str(uuid.uuid1()) + '.txt', 'x')
f.write('Name: ' + firstName + ' ' + lastName)
f.write('\nGender: ' + gender)
f.write('\nForm: ' + form)
f.close()
print('Written to file.')