Ok, I made myself the challenge so I can do some programming.
However I faced some problems.
adtprice = {19.99 , 49.99}
chldprice = adtprice * (3/4) - 7.5
And this is Error I got as the result.
Traceback (most recent call last):
File "C:/Users/Owner/Desktop/Programming Scripts/park.py", line 2, in <module>
chldprice = adtprice * (3/4) - 7.5
TypeError: unsupported operand type(s) for *: 'set' and 'float'
I wants it to be simple and useable since I will use adtprice and chldprice often.