Answer:
The code script is explained below
Explanation:
Code :
# assigning variables to given values
numChar = 8
charge = 0.00
color = 'gold'
woodType = 'oak'
# check if number of characters is greater than 5, add $4 for every extra character
if numChar > 5: charge += (numChar - 5) * 4
# if wood is of oak add charge by 20
if woodType is 'oak': charge += 20
# if coloring is gold then add charge by 15
if color is 'gold': charge += 15
# add charge by 35 as minimum charge
charge += 35
#orint the charge to screen
print("The charge for this sign is $%.1f" %charge)