Skip to content

Instantly share code, notes, and snippets.

@richardjpope
Last active August 29, 2015 14:24
Show Gist options
  • Save richardjpope/807ca5fd3702ac380207 to your computer and use it in GitHub Desktop.
Save richardjpope/807ca5fd3702ac380207 to your computer and use it in GitHub Desktop.
Minimum wage rates 2014
#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