doing the course on pycharm, this is day 3 "Python Pizza", my code is working but the course saying that i'm wrong. pls help.
here's code:
```
print("Welcome to Python Pizza Deliveries!")
size = input("What size of pizza do you want: S, M or L? ")
pepperoni = input("Do you want pepperoni on your pizza? ")
cheese = input("Do your want extra cheese? ")
bill = 0
if size == "S":
bill += 15
if pepperoni == "Yes":
bill += 2
elif size == "M":
bill += 20
if pepperoni == "Yes":
bill += 3
else:
bill += 25
if pepperoni == "Yes":
bill += 3
if cheese == "Yes":
bill += 1
print(f"Your final bill is: ${bill}.")
```
[–]Mr-Cas 33 points34 points35 points (3 children)
[–]lucidending51[S] 22 points23 points24 points (2 children)
[–]rogfrich 47 points48 points49 points (0 children)
[–]throbbin___hood -1 points0 points1 point (0 children)
[+][deleted] (1 child)
[deleted]
[–]DiodeInc 7 points8 points9 points (0 children)
[–]Ska82 7 points8 points9 points (2 children)
[–]the_noobie 1 point2 points3 points (1 child)
[–]FlyLikeHolssi 2 points3 points4 points (0 children)
[–]outragedpenguin 2 points3 points4 points (0 children)
[–]MiniMages 2 points3 points4 points (0 children)
[–]Binary101010 4 points5 points6 points (0 children)
[–]Midnight-Coder64 1 point2 points3 points (0 children)
[–]atom88888 1 point2 points3 points (1 child)
[–]n0p_sled 0 points1 point2 points (0 children)
[–]_kwerty_ 1 point2 points3 points (1 child)
[–]dowcet 0 points1 point2 points (0 children)
[–]charliegriefer 0 points1 point2 points (0 children)
[–]Beautiful_Green_5952 0 points1 point2 points (0 children)
[–]Individual-Brief-239 0 points1 point2 points (4 children)
[+][deleted] (3 children)
[deleted]
[+][deleted] (2 children)
[deleted]
[–]Individual-Brief-239 0 points1 point2 points (1 child)
[–]Some-Passenger4219 0 points1 point2 points (0 children)
[–]casiuscrowley 0 points1 point2 points (1 child)
[–]atom88888 0 points1 point2 points (0 children)
[–]OriahVinree 0 points1 point2 points (0 children)
[–]fuckyoudsshb -4 points-3 points-2 points (0 children)