
Patrick B. answered 01/28/21
Math and computer tutor/teacher
taxCode='T'
price=10
taxRate=0.07
if (taxCode=='T'):
price = float(price)*(1 + float(taxRate))
print(price)
X=7
if (X<10):
X = int(X)*5
print(X)
opCode=1
if (opCode==1):
x=input("Please input X :>")
y=input("Please input Y :>")
print(float(x)+float(y))
ace=False
if (ace==False):
print('Not an ace')