Skip to content

Commit

Permalink
Merge pull request #5813 from treber/treber
Browse files Browse the repository at this point in the history
Reto #11 - Python
  • Loading branch information
Roswell468 authored Nov 22, 2023
2 parents af1e92d + 1e8d4ef commit 5604870
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Retos/Reto #11 - URL PARAMS [Fácil]/python/treber.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Reto #11: URL params
#### Dificultad: Fácil | Publicación: 13/03/23 | Corrección: 20/03/23

## Enunciado

"""
/*
* Dada una URL con parámetros, crea una función que obtenga sus valores.
* No se pueden usar operaciones del lenguaje que realicen esta tarea directamente.
*
* Ejemplo: En la url https://retosdeprogramacion.com?year=2023&challenge=0
* los parámetros serían ["2023", "0"]
*/
"""

url = input("Pegue su url con parámetros: ")


def findParams():
params = []
x = url.split("?")
lista = x[1].split("&") # ['year=2023', 'challenge=0']
for y in lista:
z = y.split("=") # ['year', '2023']
params.append(z[1])

return params

params_url = findParams()
print(f"los parámetros de la url son: {params_url}")

0 comments on commit 5604870

Please sign in to comment.