Last active
August 29, 2015 14:24
-
-
Save richardjpope/807ca5fd3702ac380207 to your computer and use it in GitHub Desktop.
Minimum wage rates 2014
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#https://www.gov.uk/national-minimum-wage-rates | |
def minimum_wage(age, apprentice=False, apprenticeship_year=None): | |
if apprentice: | |
if age < 19 or apprenticeship_year == 1: | |
return 2.73 | |
if age < 18: | |
return 3.79 | |
elif age >= 18 and age < 21: | |
return 5.13 | |
elif age >= 21: | |
return 6.50 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment