A partir de Python 3.6 (PEP 498 : https://www.python.org/dev/peps/pep-0498/)
se puede usar format asi para este caso:
elif command == ‘S’:
client_name = _get_client_name()
found = search_client(client_name)
if found:
print(f'The client {client_name} is in the client\'s list')
else:
print(f'The client {client_name} is not in our client\'s list')
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?