This website works better with JavaScript.
首頁
探索
說明
登入
E2L_Ivry
/
cours-python
關註
5
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
活動
瀏覽代碼
numbers.py: split code with and without classes
master
Dimitri Merejkowsky
5 年之前
父節點
f6eacb9f90
當前提交
e5a4f6d3e7
共有
2 個文件被更改
,包括
14 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-0
sources/numbers/numbers_object.py
+14
-0
sources/numbers/numbers_proc.py
sources/numbers/numbers.py → sources/numbers/numbers_object.py
查看文件
+ 14
- 0
sources/numbers/numbers_proc.py
查看文件
@@ -0,0 +1,14 @@
import sys
import urllib.request
def main():
number = sys.argv[1]
with urllib.request.urlopen("http://numbersapi.com/" + number) as request:
response = request.read().decode("utf-8")
print(response)
if __name__ == "__main__":
main()