Skip to content
  • This project
    • Loading...
  • Sign in

Luciano Barletta / Pruebas-RTO

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Pruebas-RTO
  • titulos.py
  • Tu Nombre's avatar
    Se agrega titulo de ejes · ef8223e3
    Tu Nombre committed 2024-07-01 13:03:15 -0300
    ef8223e3 Browse Directory
titulos.py 306 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
def EjesTitulosOrden(n):
    tr = {
        "1":"primer",
        "2":"segundo",
        "3":"tercero",
        "4":"cuarto"
    }
    try:
        rta = tr[str(n)]
    except:
        rta = str(n)
        print(f"titulos.EjesTituloOrden {n} no definido se usa ingreso")
    print(rta)
    return rta