the-honk/coursework/gcse computer science/year 9/python/python challenges/5 - Name and Subject.py

3 lines
136 B
Python
Raw Normal View History

2021-05-28 20:38:55 +00:00
name = input('What is your name?')
subject = input('What is your favourite subject?')
print('I like ' + subject + ' too, ' + name + '!')