I have successfully rendered a stacked label in ArcMap using a java script labeling expression, but I cannot figure out how to do the same thing with Python in the Label Expression box.
This is what I used for java script:
function FindLabel ( [LOT], [SUBDIVISION] )
{
return [LOT] + "\r" + [SUBDIVISION];
}
How do I do this same thing by using python?
I just want to stack the my Lot label on top of my Subdivision label, but using python.
Thank you in advance for any thoughts or suggestions.