このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
ヘルプ
サインイン
E2L_Ivry
/
cours-python
ウォッチ
5
スター
0
フォーク
0
コード
課題
0
プルリクエスト
0
リリース
0
Wiki
アクティビティ
ソースを参照
no if name is main
master
Dimitri Merejkowsky
6年前
親
f519e75f9a
コミット
009b2fa843
4個のファイルの変更
、
5行の追加
、
7行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
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
ファイルの表示
@@ -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
ファイルの表示
@@ -47,6 +47,4 @@ def main():
print("Gagné")
return
if __name__ == "__main__":
main()
main()
+ 1
- 2
sources/05-airports.py
ファイルの表示
@@ -27,5 +27,4 @@ def main():
print(result)
if __name__ == "__main__":
main()
main()
+ 1
- 2
sources/06-top-words.py
ファイルの表示
@@ -33,5 +33,4 @@ def main():
stream.close()
if __name__ == "__main__":
main()
main()