code.py
1 # SPDX-FileCopyrightText: 2021 Kattni Rembor for Adafruit Industries 2 # 3 # SPDX-License-Identifier: MIT 4 5 """Example of assigning a variable and comparing it to a value.""" 6 user_name = input ("What is your name? ") 7 8 if user_name == "Clark Kent": 9 print("You are Superman!") 10 else: 11 print("You are not Superman!")