Following this question:
Label expression in ArcGIS- error
I used this python expression in order to create a stacked label from two field: 'name3' and 'results':
"{}\n{}".format([name3], [results])
the problem is that some of the labels contain "None" values that i don't want to represent in the map:
How can i remove the None values and still use the python phrase
I don't want to use VB phrae-i know that in VB the None values disappear from the map and still i prefer to use python.


