I'm having issues skipping or trimming the first two numbers in a provided argument. As an example I am passing the value of "00123456" to 'id'. I want the request.args.get against 123456 instead 00123456. is there a function I can use to drop off the zero's. Also relatively new to the python world so please advise if I need to provide more info.
@main.route('/test')
def test():
    """
    Test route for validating number
    example - /test?id=00123456
    """
    # Get number passed in id argument
    varNum = request.args.get('id')