-
Notifications
You must be signed in to change notification settings - Fork 79
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
feat:completed risk-risiko #147
base: main
Are you sure you want to change the base?
feat:completed risk-risiko #147
Conversation
print("Giocatore1 ha vinto") | ||
else: | ||
print("Giocatore2 ha vinto") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
potresti implementare qualche funzione
src/ex6.py
Outdated
if counterGiocatore1>=counterGiocatore2: | ||
print("Giocatore1 ha vinto") | ||
else: | ||
print("Giocatore2 ha vinto") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
qui c'è una ridondanza di codice, potresti salvare in una variabile "winner" il giocatore che vince utiizzando l'operatore ternario e poi scrivere una sola print al posto di scriverne due quasi uguali
src/ex6.py
Outdated
if giocatore1[0]>giocatore2[0]: | ||
counterGiocatore1+=1 | ||
else: | ||
counterGiocatore2+=1 | ||
|
||
if giocatore1[1]>giocatore2[1]: | ||
counterGiocatore1+=1 | ||
else: | ||
counterGiocatore2+=1 | ||
|
||
if giocatore1[2]>giocatore2[2]: | ||
counterGiocatore1+=1 | ||
else: | ||
counterGiocatore2+=1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
questo codice è un po' ridondante non credi?
forse creando una funzione potresti ridurre la ridondanza, oppure potresti scriverlo meglio con un ciclo for ed in 3 righe te ne esci ;-)
|
||
a = int(random()*10) | ||
b = int(random()*10) | ||
d = int(random()*10) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Definisci una tua funzione random che esegua questa operazione random()*10
if giocatore1[2]>giocatore2[2]: | ||
counterGiocatore1+=1 | ||
else: | ||
counterGiocatore2+=1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aggiungi dei commenti per rendere più chiaro il codice.
No description provided.