The following line can be used to concatenate more not-None elements:
FullName=", ".join(filter(None, (LastName, FirstName)))
The following line can be used to concatenate more not-None elements:
FullName=", ".join(filter(None, (LastName, FirstName)))