# This is a valid and good way to assign a value to a variable # For example you might want to assign values to variables to calculate the area of a circle pi = 3.142 # I could have also used "math" library (math.pi) radius = 5 # Interger value for radius area_of_circle = 0 # Used to store the value of area of circle area_of_circle = pi * (radius) ** 2 # Area = (PI * R^2) print("The area of the circle based on the given data is: ", area_of_circle)