Solution: What is this language?



examples/basics/check_python.py
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.')