create a list named taxrates consisting of the following fiv
create a list named tax_rates, consisting of the following five elements: 0.10, 0.15, 0.21, 0.28, 0.31, in that order!!! please use PYTHON!! THANKS!
Solution
List.py
tax_rates = [0.10, 0.15, 0.21, 0.28, 0.31];
print tax_rates
Output:
sh4.3$ python main.py
[0.1, 0.15, 0.21, 0.28, 0.31]
