import pandas as pd import numpy as np
test = 25
if test < 50: print("Value is less than 50")
Value is less than 50
dollars = 50 movie_cost = 20 if dollars > movie_cost: print("You can afford to go to the movie") else: print("You can't afford to go to the movie")
You can afford to go to the movie