In this video, we will learn how to program the computer to run conditions using the If, Elif, and Else statements. We will also learn how to use the input() function to get values from the user.
Note: The input() function gets values on the form of strings, so you will need to convert them to integers, floats, or boolean values manually using the int(), float(), and bool() functions respectively.
List of keywords:
if - condition
elif - condition
else - end condition
List of functions:
input() - takes value from user in the form of Strings
#If #Elif #Else #input() #str