
python argument意思 在 コバにゃんチャンネル Youtube 的精選貼文

Search
Python 函式參數所接收的引數(Argument),主要可以分成兩種,分別為位置引數(Positional Argument)和關鍵字引數(Keyword Argment),以下我們先來看個 ... ... <看更多>
argument 參數2023-精選在Instagram/IG照片/Dcard上的焦點新聞和熱門話題資訊,找argument參數,argument parameter區別,argument參數,argument python ... ... <看更多>
#1. 引數(Argument) vs. 參數(Parameter) - NotFalse 技術客
An argument is an expression used when calling the method. A parameter is the variable which is part of the method's signature (method ...
#2. 詞辨:parameter 與argument - Mee's Notes
目前較通用的翻譯是parameter 為「參數」、argument 為「引數」, 姑且可以看成「參考格式」、「實際引用」的意思吧。 meebox 於 7:11 下午 ...
#3. [Python教學]5個必知的Python Function觀念整理
關鍵字參數(Keyword Argument):呼叫函式時,在傳入參數值的前面加上函式所定義的參數名稱,如下範例。除了提高可讀性外,也可將此種參數打包成 ...
#4. 菜鳥工程師肉豬: Python 什麼是關鍵字引數keyword argument
Python 什麼是關鍵字引數keyword argument · positional argument:傳入值前不指定參數名或傳入的iteralbe前加上 * 。 · keyword argument:傳入值前指定 ...
在程式設計中,參數(parameter)又稱形式引數(formal argument),是一種在调用子程序时用以向子程序传递資料的特殊变量,這些被傳遞資料也就是子程序引數(arguments) ...
#6. 在Python中,parameters与argument有什么不同? - 知乎
argument :实参,指的是你提供给函数调用的值:. x=1 y=2 add(x,y)>>>>>>>>>>>>>>> ...
Python 30天學習日誌系列第14 篇 ... 函式定義時的參數稱為「形式參數(parameter、formal argument)」,函式呼叫時的參數稱為「實際參數(argument、actual argument)」 ...
#8. [Python] *args 和**kwargs 是什麼?一次搞懂它們!
這樣就可以理解為什麼要使用*args 這個參數了,但是**kwargs 又是什麼呢?我們要先從關鍵字引數來說起:. 關鍵字引數Keyword Argument. 在呼叫 ...
#9. 位置引數(Positional Argument)與關鍵字引數(Keyword Argument)
Python 函式參數所接收的引數(Argument),主要可以分成兩種,分別為位置引數(Positional Argument)和關鍵字引數(Keyword Argment),以下我們先來看個 ...
#10. 4. 深入了解流程控制— Python 3.11.4 說明文件
除了剛才介紹的while ,Python 擁有在其他程式語言中常用的流程控制語法,並有一些不一樣的 ... 函式呼叫時,關鍵字引數(keyword argument) 必須在位置引數(positional ...
#11. python 函數的可變參數*args 和**kwargs - Maxkit
兩個可以同時使用,但在使用時, *args 必須在 **kwargs 的前面,因為positional arguments,有位置順序的對應,必須位於keyword arguments之前。 以下的 ...
#12. Command Line Arguments in Python - 隨筆趣事- Medium
意思 就是我們使用cmd,來執行程式命令時,跟隨在後面的參數,就叫做Command Line Arguments: command line arguments. Python 提供了多種方法來處理這些類型的參數。
#13. Parameter 還是Argument?知道這個就夠了 - 每日頭條
用Python語言為例,比如:. #函數定義時, 這裡的x 和y 就是parameters ... 碼農們在日常口頭交流時可以隨便用哪個,大家都明白意思,正式表述時, ...
#14. [Python] 基本教學(8) function 中的參數、預設值、*args
在Python 當中,若是我們要定義函式,我們也可以特過*args 和**kwargs 來 ... 這樣一來,有沒有比較懂我所說的『沒有限定長度的參數輸入』的意思呢?
#15. Python 中的可選引數
python Copy # Function Defination def myfunction(first_name, last_name, *args): print(first_name) print(last_name) for argument in args: ...
#16. 函式引數· Introducing python - iampennywu
>>> def print_args(*args): # 函數的參數使用星號,星號會將「可變數量」的「潛在引數群組化」,變成一個參數值的tuple print('Positional argument tuple:', args) # ...
#17. Python argparse 教學:比sys.argv 更好用,讓命令列引數整潔 ...
當你在命令列呼叫Python 程式、又同時需要修改變數內容,你可以用命令列引數(command-line argument)的方式將變數資訊傳入執行程式中,初學Python ...
#18. Python Deep Drive I 第五節Function Parameters 筆記
Argument vs Parameter. 函式中"定義"需要傳入做運算的變數叫做參數(parameters),而在函式外,宣告要用 ...
#19. Python :: 定義函式
在Python 中,函式中還可以定義函式,稱為區域函式(Local function),可以 ... TypeError: sum() missing 1 required positional argument: 'c' >>> ...
#20. Python 到底是pass by value 還是pass by reference? 一次搞懂 ...
(2) 關於buildin function id. id 常常會有直覺上的誤解, 因為我們常常會使用variable 作為 id 的argument:.
#21. argument參數2023-精選在Instagram/IG照片/Dcard上的焦點 ...
argument 參數2023-精選在Instagram/IG照片/Dcard上的焦點新聞和熱門話題資訊,找argument參數,argument parameter區別,argument參數,argument python ...
#22. Python 中的函式(Function) 觀念(Part 1) - DataSci Ocean
本文介紹Python 中函式的基本觀念,包含參數(Parameter vs Argument)、回傳值(Return Value) 與None 值等觀念,幫助初學者了解Python 中函 ...
#23. 傳回值、與指定傳入法(Call by Assignment) - 函數(Functions ...
Video created by National Taiwan University for the course "用Python 做商管程式 ... 好,這件事情也就是說你把argument 當成是return value 的意思來用,好,你 ...
#24. Python基础——positional argument vs keyword argument 原创
python 强大的类型推导,有时也会带来一些副作用,比如有时编译器会报如下错误:TypeError: Function takes at most 1 positional arguments (2 ...
#25. argument在python里什么意思 - 稀土掘金
argument 在python里什么意思. 在Python 中,argument 可以被理解为函数或方法的输入参数,也被称为函数参数。当您调用 ...
#26. Python Functions - 文科人這樣讀理科
這是keyword arguments,意思是passing argument時,不是跟次序,而家根據argument名字(the meaning of the argument is dictated by its name, not by ...
#27. Python亂談
A piece of cake☻。 除了上述的幾種輸入參數用法之外,再介紹一種用法,叫做keyword-only arguments。意思是這種參數僅 ...
#28. 如何分辨method 和function 以及argument 和parameter 的差異
An argument is an actual value that is passed to the function when a ... 這意思是說你只能回傳一次運算,也就是說,費氏數列是無法在這邊進行增強型遞迴的。
#29. Python 在類別內定義函式到底為什麼一定要有self 參數?
這主要是Python 在實作物件系統上有很不同的思維。 ... in <module> TypeError: class_method() takes 0 positional arguments but 1 was given >>>.
#30. 使用argparse 為Python 腳本加入CUI 參數- zhung to be lazy…
本文用詞說明. 因為命令列的參數選項跟Python 方法(Method)的選項參數中文命名很混淆視聽(其實英文也都叫做Argument ...
#31. Python 的Keyword-Only Arguments 理解| 自由行 - LFhacks.com
定义. Keyword-Only Arguments,意思是这种参数只能通过形如 a=1 的写法给出,不再接受 ...
#32. Python 詭譎的default parameter value ,由踩坑來學習!
python 的函數是物件; python 的def 是「可執行陳述式」; default arguments 的值會在「跑def 陳述」時被建立; mutable object 做default value 的 ...
#33. 理解Python 中的*args 和**kwargs - 团子的小窝
当然,本文章的主题并不是讲默认参数,而是另外一种达到可变参数(Variable Argument) 的方法:使用*args和**kwargs语法。其中,*args是可变的positional arguments列表,** ...
#34. 參數和引數之間的差異- Visual Basic - Microsoft Learn
引數代表您在呼叫程序時提供給程序參數的值。 呼叫程式碼會在呼叫程序時提供引數。 您呼叫 Function 或 Sub 程序時, ...
#35. Python 命令行参数 - 菜鸟教程
Python 命令行参数Python 基础语法Python 提供了getopt 模块来获取命令行参数。 $ python test.py arg1 arg2 arg3 Python 中也可以使用sys 的sys.argv 来获取命令行 ...
#36. Python 基礎- 函數參數及調用- 丹尼爾- 博客园
test1函數,因為Python解釋器隱式返回了一個 None; test2函數,返回值為0 ... positional arguments: 'x' and 'y' Process finished with exit code 1.
#37. Python 中的資料–物件(object) 與內建函式(builtin functions)
操作特定方法這樣的動作稱為『叫用(call)』, 就是叫出(召喚) 特定方法來用的意思。提供給方法的額外資料稱為『引數(argument)』。叫用方法也是一種運算式, ...
#38. [Python] ** 雙星號(double star/asterisk) vs *單星號(star/asterisk ...
*args : 可變的參數串列(positional arguments),所謂的"可變",也就代表著呼叫該function時,我們可以完全忽略他,不帶任何參數;亦或者是一次給他多個 ...
#39. 打包為tuple,**最後一個(不定長度)選擇性參數:打包為dict,解包時 ...
Python 函數參數使用*list或*tuple(長度同參數個數), **dict(取value), ... TypeError: addTest() got an unexpected keyword argument 'p'.
#40. Python 函式的參數傳遞方式:Passed by assignment
如果以上四種就可以解釋完Python 的參數傳遞方式,那或許也不需要寫這篇文章了( ... Remember that arguments are passed by assignment in Python.
#41. 函数基础 - Python Like You Mean It
你可以定义函数使其接受参数(argument),也就是输入进包装代码的对象。 def 语句¶. 类似于 if , else ,和 for ,Python保留了 def 语句来表达函数(以及我们会在 ...
#42. Python函數 - 極客書
當在一個函數調用中使用關鍵字參數,調用者通過參數名稱標識的參數。 這可以跳過參數或脫離順序,因為Python解釋器能夠使用提供的參數使用匹配的值的關鍵字。還可以使 ...
#43. 無題
_百度知道Python print()的关键字参数无… https://m.blog.naver.com/doblo77/221989493411 invalid keyword argument什么意思mean Web错误信息17:TypeError: 'a1' ...
#44. Python函式引數操作詳解 - ITREAD01.COM - 程式入門教學
這樣以來,不但能處理複雜的引數,還可以簡化呼叫者的程式碼。 形參和實參. 不止Python,幾乎所有的程式語言都會涉及兩個術語:parameter 和argument。
#45. python 中self到底是幹嘛用的,一定要寫嗎,代表什麼意思,一定要 ...
The first argument of every class method, including init, is always a reference to the current instance of the class. By convention, this ...
#46. Python 函式的引數與關鍵字 - 機械設計專題(虎尾科大MDE)
Arguments and Keywords in Python Function. Date 週二14 二月2017 By 40323230 Tags Python3. Python 函式的引數與關鍵字. 函式基本用法; 引數與關鍵字 ...
#47. argument在python里什么意思_Python函数参数中的'\'是什么 ...
泛舟湖上清波郎朗. 参考文档PEP 457 -- Syntax For Positional-Only Parametershttps://www.python.org/dev/pe...python 的参数有两种位置参数(positional argument) ...
#48. 無題
Solved: The type of this argument X does not match the exp. ... Python中*args 和**kwargs的用法总结- 知乎- 知乎专栏args什么意思mean Python中的*args和**kwargs ...
#49. Python错误集锦:调用函数提示SyntaxError - 桔子code
调用函数提示SyntaxError: positional argument follows keyword argument #juzicode.com / vx:桔子code def func(name,height=160,weight=70): ...
#50. positional argument follows keyword argument解決方法 - 台部落
SyntaxError: positional argument follows keyword argument 出現這個bug的原因在於參數位置不正確,關鍵字參數必須跟隨在位置參數後面! 因爲python ...
#51. python中pow函数是什么意思?(python中pow函数是什么意思)
(python中pow函数是什么意思)Python3解释器内置了很多函数, ... ValueError: pow() 2nd argument cannot be negative when 3rd argument specified.
#52. python3-argparser的使用- 邢存远的博客
python test.py usage: test.py [-h] param test.py: error: the following arguments are required: param $ python test.py -h usage: test.py [-h] ...
#53. 無題
Problem with Function Arguments. Let's define a function to add two numbers in Python. We'll write it like this: python args kwargs什么意思mean 1.
#54. 在Python中,parameters与argument有什么不同 - 百度知道
请给出这两个词出现的上下文? 单独这样说的话意思差不多,都是中文里的“(函数)参数”。在具体语境里可能会有不同。 本回答由网友推荐. 已赞过 已踩过<.
#55. [Python] Python decorator - HHtu's Code
python decorator, 一個相當方便而且相當重要的工具, ... 前半段講的都是decorator without argument, 意思就是也有decorator with argument
#56. 命令行参数(Command Line Arguments)_学习Python - WIKI教程
Python 提供了一个getopt模块,可以帮助您解析命令行选项和参数。 $ python test.py arg1 arg2 arg3. 1; 2. Python sys模块通过sys.argv提供对任何命令 ...
#57. SyntaxError: positional argument follows keyword ... - 菜鸟笔记
SyntaxError: positional argument follows keyword argument出现这个bug的原因在于参数位置不正确,关键字参数必须跟随在位置参数后面! 因为python函数在解析参数时, ...
#58. Python函数中的*args, **kwargs是什么意思?如何使用? - 腾讯云
**kwargs称之为keyword Variable Arguments,有关键字参数;. 当函数中以列表或者元组的形式传参时,就要使用*args;. 当传入字典形式的参数时 ...
#59. [Python] 函数入参中的*args和**kwargs 是什么意思 - 51CTO博客
Python 中的函数入参可能会出现 *args, **kwargs ,这其实是代表可变参数的意思,其中*agrs 表示普通的可变参数列表,**kwargs 代表keyword 可变参数 ...
#60. python错误__str__() Takes 0 positional arguments but 1 was ...
{代码...} 提示错误: google翻译了一下,说是取0个位置参数,但给出1不太理解这个什么意思。
#61. python中pow函数是什么意思?(python中pow函数是什么意思)
python 中pow函数是什么意思?(python中pow函数是什么意思) ... ValueError: pow() 2nd argument cannot be negative when 3rd argument specified.
#62. got multiple values for argument [duplicate](重复)。 - 七牛云
Python 3.5 TypeError: got multiple values for argument [duplicate](重复)。
#63. Python函數中的引數(必需引數、關鍵字引數 - tw511教學網
Python 函數中的引數(必需引數、關鍵字引數、預設引數和不定長引數) ... TypeError: print_string() missing 1 required positional argument: 'str'.
#64. Python 中TypeError: Class() takes no arguments 错 - 迹忆客
Python “TypeError: Class() takes no arguments”发生在我们忘记在类中定义 __init__() 方法但在实例化它时提供参数的情况下。 要解决该错误,请确保在 ...
#65. 函数的参数- 廖雪峰的官方网站
Python 的错误信息很明确:调用函数 power() 缺少了一个位置参数 n 。 ... 7) ,意思是,除了 name , gender 这两个参数外,最后1个参数应用在参数 ...
#66. Python 'takes exactly 1 argument (2 given)' Python error
Python 初学,定义urlConfig 接收参数,正常传递参数时,出现,多给了一个参数的错误问题,. 定义class的函数之后,在调用的时候出现“'takes exactly 1 ...
#67. 使用Python typing 模組對你的同事好一點 - MyApollo
由於Python 動態型別(執行階段可以任意改變變數的型別)的特性, ... test.py:16: error: Argument 3 to "update_count" has incompatible type "str"; ...
#68. Python中的*args 和**kwargs - Aaron_SR - 简书
def test_defargs(one, two=2): # 参数one没有默认值,two的默认值为2 print('Required argument: ', one) print('Optional argument: ' ...
#69. 解析python decorator | Cizixs Write Here
这个看起来很酷,在各种源码里经常出现的家伙到底是什么意思,怎么使用? ... as an argument, and returns a function object as a return value.
#70. python中的双星参数展开问题 - 序语程言
在python的函数中允许有不定参数,我们对于这种参数已经习以为常了,并且这 ... 试图打印 **dict 的时候却报错了,它的意思是 name 并不是print函数的 ...
#71. Re: [問題] function argument * - 看板Python - 批踢踢實業坊
請問,'*'這個參數是什麼意思?是positional arguments嗎? : 這是在python3.4.2的程式碼裡面看到的: 謝謝指教 這是Python 3(忘了哪一版)開始的新 ...
#72. Python中* 和**是什么意思,都有哪些用法? - 群英网络
而写成*args 和**kwargs 只是一个通俗的命名约定。 python函数传递参数的方式有两种:. 位置参数(positional argument); 关键词参数(keyword argument ...
#73. sys — 你所不知道的Python 標準函式庫用法01 - Louie Lu
01. sys.argv – dealing with command line arguments. sys.argv 用來表示從command line 傳入的參數,sys.argv[0] 代表著程式的名稱。如果你 ...
#74. 函式與套件 - MahalJsp
你正在開發一個線上遊戲的Python應用程式你需要創建符合以下條件的函數函數名為update_score ... missing 1 required positional argument: 'points').
#75. Python 零基礎新手入門#07 Function (函式) - YouTube
內容綱要00:00 函式基本概念01:07 傳遞引數( Arguments )02:17 關鍵字引數03:02 Return 語法03:27 設定引數預設值04:02 全域與區域變數05:26 綜合練習: ...
#76. Argument Clinic指南— Python 3.10.0a4 文档
此外,Argument Clinic必须足够灵活,可以使用任何方法进行参数解析。python有一些函数和一些非常 ... 对于已用或未用,我的意思是参数是否在这个调用中接收到参数。
#77. Python的参数输入报错问题 - 宋超超| Charles
1、问题. X = identity_block(X, f = 3, [64, 64, 256], stage=2, block='b'). 报错:. SyntaxError: positional argument follows keyword argument ...
#78. Python 入門筆記:函式參數教學-參數預設值、名稱對應
第二行sum=0 是用來做加總使用,他會跟第四行程式碼有關,你可以想像我們要做一個加總,而且從0 開始,這就是他的意思。 第三行for n in ns: 是迴圈,迴圈 ...
#79. tqdm/tqdm: A Fast, Extensible Progress Bar for Python and CLI
Note that the usual arguments for tqdm can also be specified. $ find . -name '*.py' -type f -exec cat \{} ...
#80. Newest Questions - Stack Overflow
Can pSrc and pDst function arguments in ARM DSP point to same memory? ... This is the code in Python using pandas . print(df["date"].head()) 0 .
#81. Python函式的參數設計– Python Function Parameters - Super9
parameter 跟argument的差異. 基本上這兩者是一樣的,不過使用在不同的情境下。如果混用了其實是沒關係,可能也沒人會在意. def my_func(a, b): # a, ...
#82. CUDA C++ Programming Guide - NVIDIA Docs
Function Parameters. 14.5.10.3.1. __global__ Function Argument Processing; 14.5.10.3.2. Toolkit and Driver Compatibility; 14.5.10.3.3.
#83. Delete Node in a Linked List - LeetCode
Delete the given node. Note that by deleting the node, we do not mean removing it from memory. We mean: The value of the given node should not exist in the ...
#84. 新創公司英文 - glurosa.online
... She Wants To Be A Stay At Home Wife And They Get Into A Heated Argument ... How to Swap Two Variables in C++ Python and JavaScript.
#85. 九族文化村餐點 - enzaku.online
九族文化村餐點善於團隊合作英文刷卡分期0利率意思葉欽源生鐵鍋. ... Elements Of Argument 12th Edition Answer Key. Night party ...
#86. 1.14 argument 和parameter 的区别? - Python黑魔法手册
1.14 argument 和parameter 的区别?¶. http://image.iswbm.com/20200804124133.png. arguments 和parameter 的翻译都是参数,在中文场景下,二者混用基本没有问题, ...
#87. 想問是什麼原因會有AssertionError: group argument must be ...
__init__(self) self.url = url def run(self): d = requests.get(url) print(d) t1 = time.time() urls = ['http://python.org', ...
#88. argument(程式語言) - 中文百科全書
parameter 和argument的區別,做如下的簡單說明。1. parameter是指函式定義中參數,而argument指的是函式調用時的實際參數。2. 簡略描述為:parameter=形參(formal ...
#89. 少年Py的大冒險:成為Python數據分析達人的第一門課
18 函式的寫法我們現在要進入 Python 基礎篇最後一個,也是對所有程式語言來說都 ... 開始大家的疑問可能是 return 是什麼意思,這就是這個函式要回傳值給我們的意思。
#90. Python好好玩|趣學電玩遊戲程式設計(電子書)
在函式呼叫中以括號括住的值稱為引數(argument)。在第 2 行 print()函式呼叫中的引數 ... 這就是傳(passing)引數到函式中的意思。 Input()函式第 4 行中的指定陳述句 ...
#91. Python意思決定の数理入門 - 第 111 頁 - Google 圖書結果
5 第章意思決定のためのORの基礎 f(x) OR(Operations Research)は,意思決定に関わる ... “arg min”は,argument of the minimum の略で,この二つをもって, f(x)を最小化 ...
#92. Python駭客密碼|加密、解密與破解實例應用(電子書)
如果省略第二個索引足標,Python 會自動認定是擷取從第一個索引足標位置之後到字串結尾位置的字元。 ... 呼叫(call)函式的意思是去執行函式中的程式碼。
#93. 精通Python 3程式設計 第二版 (電子書) - 第 174 頁 - Google 圖書結果
... 1 return count 我們使用 parameter = default 的語法為 letters 參數指定了一個預設值。 ... 引數來指定兩個參數,所以我們可以依照自己的意思來安排它們的順序。
#94. Python 速查手冊: 完整 38 個關鍵字的用法、超過 400 個範例及內建功能與標準程式庫的介紹 V2.00
5.1 參數參數(parameter)是函數(function)或方法(method)名稱之後小括弧提供的識別 ... 所謂參考的意思是指對複合資料型態的物件而言,只要該物件是可變的,在函數內對該 ...
#95. 以Python取勝2——加密貨幣及NFT獲利實戰
後面的就是對 API 的具體搜索條件,專有名詞是query argument。 ... 並輸入上面設定的 url,就可以進行一個 GET requests,意思是從網頁的伺服器獲取資源,這裏的資源就是 ...
#96. Python 大數據專案 X 工程 X 產品 資料工程師的升級攻略
... be changed using the --concurrency argument and defaults to the number of ... 意思是同時執行任務的線程數量預設為 CPU 核心數,由於證交所、櫃買中心會 ban ...
python argument意思 在 Re: [問題] function argument * - 看板Python - 批踢踢實業坊 的推薦與評價
※ 引述《walelile (wakaka)》之銘言:
: 我看別人程式碼的時候,看到作者宣告了一個function
: def foo(a, *, b=None, **kwds):
: ....
: 請問,'*'這個參數是什麼意思?是positional arguments嗎?
: 這是在python3.4.2的程式碼裡面看到的
: 謝謝指教
這是 Python 3(忘了哪一版)開始的新語法
代表終止 positional argument list
我想你應該知道
def foo(a, b=None):
可以用下面的任一方式使用
foo(1)
foo(1, 2)
foo(1, b=2)
foo(a=1, b=2)
等等
但這有個問題。Python 會優先使用 keyword arguments,所以下面這樣
foo(1, a=2)
會變成 a=2, b=1。這可能會造成 bug,因為如果參數列很長,
foo(1)
和上面的寫法很容易讓人搞混到底哪個參數是哪個。
為了避免上面的問題,傳統的做法會這樣設計
def foo(a, **kwargs):
b = kwargs.pop('b', None)
# 後面正常處理
但這樣使用者就可以亂傳,例如
foo(1, b=2, c=3, d=4)
所以你還得判斷如果 kwargs 裡面有 c 或 d 就要怎麼辦
如果參數多起來或者 a 還有 default value 之類的會讓你很想死
所以就有了 * 這個語法。它代表「後面的參數只能作為 keyword argument 使用」
如果把宣告改成這樣
def foo(a, *, b=None):
那麼
foo(1)
foo(1, b=2)
foo(a=1, b=2)
這些都還是可以用,但
foo(1, 2)
foo(1, a=2)
就不行,因為 b 只能用 keyword argument 傳入。
當然
foo(1, c=5)
也不行,因為根本沒這個參數啊!
這樣就可以讓你設計一些更好的 API
是個好東西啊,用過了就回不去了 XD
--
作者 Linux (Windows) 看板 C_and_CPP
標題 [問題] 如何確認是否 free 對記憶體
時間 Fri Nov 2 00:14:03 2012
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 218.161.94.175
※ 文章網址: https://www.ptt.cc/bbs/Python/M.1418452831.A.4CF.html
※ 編輯: uranusjr (218.161.94.175), 12/13/2014 14:44:27
... <看更多>