Answer:
The method in Python is as follows;
def licenseNum(customID,licenseYear):
return (100000 * customID) + licenseYear
print(licenseNum(777,2014))
Step-by-step explanation:
This line declares the method with its parameters
def licenseNum(customID,licenseYear):
This line returns the expected output
return (100000 * customID) + licenseYear
The method is tested using:
print(licenseNum(777,2014))