DEV Community

Discussion on: Daily Challenge #37 - Name Swap

Collapse
 
tcostam profile image
𝚃𝚒𝚊𝚐𝚘 𝙲𝚘𝚜𝚝𝚊
def nameShuffler(fullname: str) -> str:
    return ' '.join(fullname.split()[::-1])
Collapse
 
tcostam profile image
𝚃𝚒𝚊𝚐𝚘 𝙲𝚘𝚜𝚝𝚊

Python version using static typing features.