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

Calculator test #175

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

Matilde434
Copy link

No description provided.

@Picred
Copy link
Collaborator

Picred commented Nov 8, 2023

Hai inviato un file vuoto. Controlla che il file aggiunto venga effettivamente "tracciato" con git status. Dovresti aggiungere il file che tenti di pushare manualmente con git add nome_file.py ed l'eventuale test con git add test_funzione.py (I passaggi sono scritti qui )

Copy link
Collaborator

@Picred Picred left a comment

Choose a reason for hiding this comment

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

Il file è vuoto

def mul(a: int, b: int)-> int:
return a*b

def div(a: int, b: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.

Mi sembra tutto ok, una piccola nota è che potresti aggiungere in questa funzione un controllo per assicurarti che b non sia zero e in quel caso ritornare magari None :)

def mul(a: int, b: int)-> int:
return a*b

def div(a: int, b:int)-> int:

Choose a reason for hiding this comment

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

Il return type è errato.

if b==0: print("The division is not possible")
else:
dv= div(a,b)
print(f"The division is {dv} ")

Choose a reason for hiding this comment

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

Il controllo se il secondo termine è 0 devi farlo dentro la funzione div, così facendo puoi scrivere un test che verifichi pure quello scenario.

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.

4 participants