Extract Initials

Extract initials from a name.

Code

General
''.join(word[0] for word in name.split()).upper()

Parameters

The full name to extract initials from

Server

More Python Snippets