Using the computer language in python to write a function code that personalized house signs
#Assign varibles
charge = 0.00
numChars = 8
color = "gold"
woodType = "oak"
#Checking for number of characters
if numChars > 5:
charge = 35 + (numChars-5)*4
elif numChars > 0:
charge = 35
#Checking wood type
if woodType == "oak":
charge += 20
#Checking for color
if color == "gold":
charge += 15
#Print output
print("The charge for this sign is $"+str(charge)+".")
See more about python at brainly.com/question/13437928
#SPJ1