Please help. Unable to make selection.Here is what I have....# Model selects parcel from user input import arcpy # Assign variable to the feature class featureClass = "G:\\PRAD\\PRAD_v10.1.gdb\\tax_acct" # Assign variable to users input input = arcpy.GetParameterAsText(0) # Make a feature layer from feature class arcpy.MakeFeatureLayer_management(featureClass, "layer") # Apply a selection to the feature layer arcpy.SelectLayerByAttribute_management("layer", "NEW_SELECTION", '"'+str(input)+'"')