Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Random number #178

Closed
wants to merge 2 commits into from
Closed

Random number #178

wants to merge 2 commits into from

Conversation

simone-cartalemi
Copy link

Aggiunta funzione per generare numeri interi randomici e test da 0 a 100

@@ -0,0 +1,4 @@
from random import randint

def random_number(min: int, max: int) -> int:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Il nome delle variabili in questa maniera e' estremamente esplicito, pero' c'e' il problema che vanno a sovrascrivere (e quindi nascondere) le funzioni built-in di python, max e min, che quindi non potresti andare ad utilizzare all'interno della funzione.
Potresti quindi optare per nomi alternativi come min_value o minimum o puffo. Magari non l'ultimo. A meno che tu non sia Barbanera.

Comment on lines +4 to +5
t = random_number(0, 100)
assert t >= 0 and t <= 100
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Volendo potresti mettere questo test in un ciclo giusto per fargli fare un po' di passate e vedere piu' output, ma essendo random in principio non cambia tantissimo

from src.random_number import random_number

def test_random_number() -> None:
t = random_number(0, 100)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dai un nome più "parlante" alla variabile t.
In questo contesto è ovviamente semplice da capire cosa contiene ma non è sempre così.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Definisci delle variabili costanti che contengano 0 e 100.

@simone-cartalemi simone-cartalemi closed this by deleting the head repository Nov 28, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants