#19 Python Tutorial for Beginners | If Elif Else Statement in Python
#19 Python Tutorial for Beginners | If Elif Else Statement in Python Welcome back .! My name is Ivan 20 and let's continue this series on Python. In this video, we'll talk about the CPU. CPU Overview The CPU has three parts: CU - Control Unit MU - Memory Unit ALU - Arithmetic and Logical Unit Working with the MU The MU, or Memory Unit, is used to store data when working with variables. Working with the ALU The ALU, or Arithmetic and Logical Unit, has two parts: AU - Arithmetic Unit LU - Logical Unit The AU performs calculations such as addition, subtraction, multiplication, and division. The LU is responsible for making decisions based on conditions. Working with the LU The LU, or Logical Unit, allows your computer to make decisions based on certain conditions. In programming, we use the "if" statement to specify the flow of execution based on conditions. Using the "if" Statement The syntax of the "if" statement is as follows: if condition: # ...