Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
E2L_Ivry
/
cours-python
Segui
5
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
no if name is main
master
Dimitri Merejkowsky
6 anni fa
parent
f519e75f9a
commit
009b2fa843
4 ha cambiato i file
con
5 aggiunte
e
7 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+2
-0
sources/03-fonctions.py
+1
-3
sources/04-pendu.py
+1
-2
sources/05-airports.py
+1
-2
sources/06-top-words.py
+ 2
- 0
sources/03-fonctions.py
Vedi File
@@ -6,6 +6,8 @@ b = 2
c = add(a, b)
print(c)
def greet(name, shout=False):
print("Hello,", end=" ")
print(name, end="")
+ 1
- 3
sources/04-pendu.py
Vedi File
@@ -47,6 +47,4 @@ def main():
print("Gagné")
return
if __name__ == "__main__":
main()
main()
+ 1
- 2
sources/05-airports.py
Vedi File
@@ -27,5 +27,4 @@ def main():
print(result)
if __name__ == "__main__":
main()
main()
+ 1
- 2
sources/06-top-words.py
Vedi File
@@ -33,5 +33,4 @@ def main():
stream.close()
if __name__ == "__main__":
main()
main()