uName = "Jack"
uCountry = "USA"
cName = "Python Course"
cPrice = 100
if uCountry == "USA" :
print(f"Hello {uName} Because You Are From {uCountry}")
print(f"The Course \"{cName}\" Price Is: ${cPrice - 40}")
elif uCountry == "England" :
print(f"Hello {uName} Because You Are From {uCountry}")
print(f"The Course \"{cName}\" Price Is: ${cPrice - 30}")
else :
print(f"Hello {uName} Because You Are From {uCountry}")
print(f"The Course \"{cName}\" Price Is: ${cPrice - 50}")
IndentationError: expected an indented block