Respuestas
Explicación:
Python es un lenguaje de programación interpretado cuya filosofía hace hincapié en la legibilidad de su código. Se trata de un lenguaje de programación multiparadigma, ya que soporta parcialmente la orientación a objetos, programación imperativa y, en menor medida, programación funcional.
Respuesta:
No se si te sirva
Explicación:
Lo hice con inputs, si te sigue sirviendo cámbiale lo que quieras, también le puse la tienda con derechos xd
---------------------------
salsa = 56.00
rock = 63.00
pop = 87.00
folclore = 120.50
total = 00.00
i = 0
b = 0
print("--La tienda con derechos--")
print("--Salsa: $56.00--")
print("--Rock: $63.00--")
print("--Pop: $87.00--")
print("--Folclore: $120.50--")
print(" ")
while True:
user_input = input("Salsa--Rock--Pop--Folclore (Ingresa 'Stop' para dar el valor total) --> ")
if user_input == "Salsa":
total += salsa
print(" ")
if user_input == "Rock":
total += rock
b += 1
print(" ")
if user_input == "Pop":
total += pop
b += 1
print(" ")
if user_input == "Folclore":
total += folclore
print(" ")
elif user_input == "Stop":
break
i += 1
if i == 4:
dis_6 = 0.06 * total
total = dis_6 - total
elif i >= 5 and i <= 10:
dis_8 = 0.08 * total
total = dis_8 - total
elif i > 10:
dis_10 = 0,102 * total
total = dis_10 - total
if b >= 2 and i >= 6:
total = str(total) + " Regalo: Poster"
else:
total = str(total) + " Regalo: Ninguno"
print(" ")
print(total)
print(" ")