Using IDLE,
Mr. Smith wrote a program that won’t run because it has variable names that start with a number (which is not allowed). Write a function that checks to see if a string starts with a number - if it does, remove it.
Example:
print(varFix("1myVariable”))
print(varFix("variable2”))
>>> myVariable
>>> variable2