Skip to content

Commit

Permalink
Update level.py
Browse files Browse the repository at this point in the history
  • Loading branch information
StudentNPD authored Aug 20, 2024
1 parent 95de40e commit 55794ca
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions level.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,16 @@
# op_sys = 'cls' if sys.platform == 'win32' else 'clear'

def choose_level(n_pregunta, p_level):
"""
Determina el nivel de dificultad de una pregunta en función del número de preguntas y la cantidad de preguntas por nivel.
Parámetros:
n_pregunta (int): El número de la pregunta actual.
p_level (int): El nivel actual del usuario.
Retorna:
str: El nivel de dificultad de la pregunta, que puede ser "Nivel Básico", "Nivel Intermedio" o "Nivel Avanzado".
"""
if n_pregunta/p_level > 2:
return "avanzadas"
elif n_pregunta/p_level > 1:
Expand Down

0 comments on commit 55794ca

Please sign in to comment.