Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Solution: What is this language?

language = input('What is the name of this programing language? ')

if language == 'Python':
    print('Welcome!')
else:
    print(f'No. It is not "{language}", it is Python.')