diff options
Diffstat (limited to 'python/scommesse.py')
-rw-r--r-- | python/scommesse.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/scommesse.py b/python/scommesse.py index b947df1..f65c04f 100644 --- a/python/scommesse.py +++ b/python/scommesse.py @@ -4,8 +4,8 @@ carteOut = [] def cOutPresente(x): s = False - for i in range(len(carteOut)): - if (carteOut[i] == x): + for i in carteOut: + if i == x: s = True if not s: |