Created
March 10, 2019 02:09
-
-
Save luismond/5cb5ba8461094cd5947da8e977c5bdc0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from faker import Faker | |
| from translate import Translator | |
| fake = Faker('es_MX') | |
| translator= Translator(to_lang="es") | |
| for n in range(10): | |
| print(translator.translate(fake.job())) | |
| ''' | |
| Oficial de operaciones de las fuerzas armadas. | |
| Gerente de un comercio minorista | |
| Programador, sistemas | |
| Ingeniero, ventas técnicas. | |
| entrenador deportivo | |
| Científico marino | |
| Oficial de recursos humanos | |
| Editor/a de vídeos | |
| Asistente de producción, televisión. | |
| Psicólogo educativo | |
| ''' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment