This website works better with 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 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+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()