差異處

這裏顯示兩個版本的差異處。

連向這個比對檢視

Both sides previous revision 前次修改
下次修改
前次修改
python [2016/08/18 16:57]
tony [Article List]
python [2023/06/25 09:48] (目前版本)
行 1: 行 1:
 +{{tag>​python}}
 ====== Python ====== ====== Python ======
 +Python並不是我的主要開發語言,僅因為專案的某些功能而接觸到它;這裡主要是記載一些遇到的問題與筆記。
 ===== Article List ===== ===== Article List =====
   * [[python:​socket:​time_wait_issue|TIME_WAIT issue after closing the socket]]   * [[python:​socket:​time_wait_issue|TIME_WAIT issue after closing the socket]]
   * [[python:​mixed:​run_script_at_same_python_path|Run a script that is related to the python file path]]   * [[python:​mixed:​run_script_at_same_python_path|Run a script that is related to the python file path]]
 +  * [[python:​socket:​send_resource_temporarilty_unvailable_error|socket.send with Resource temporarily unavailable error]]
 +  * [[Python:​basic:​import_class|Import Class - '​module'​ object is not callable]]
 +  * [[Python:​py2exe:​exe_show_configuration_incorrect|py2exe - run exe file show the application configuration is incorrect]]
 +===== Resource =====
 +  * [[http://​phantasla.pixnet.net/​blog/​post/​48408402-%E5%A6%82%E4%BD%95%E5%B0%87-python-%E6%AA%94%E6%A1%88%E7%B7%A8%E8%AD%AF%E6%88%90-exe-(%E5%9F%B7%E8%A1%8C%E6%AA%94)---py2exe|py2exe]]
 +  * [[http://​zwindr.blogspot.tw/​2016/​08/​python-logging.html|logging 教學]]
 +  * [[http://​stackoverflow.com/​questions/​25235618/​command-line-arguments-with-subprocess-popen|command-line-arguments-with-subprocess-popen]]
 +  * [[https://​pypi.python.org/​pypi/​setuptools|setuptools]] 缺少套件可以透過easy_install,ex. easy_install requests
 +  * [[https://​github.com/​TheAlgorithms/​Python|Samples for Algorithms]]
 +==== File IO ====
 +  * [[http://​stackoverflow.com/​questions/​8933237/​how-to-find-if-directory-exists-in-python|判斷檔案或資料夾是否存在]]
 +  * [[http://​wiki.alarmchang.com/​index.php?​title=Python_read_ini_file%E6%96%B9%E6%B3%95%E4%BA%8C_with_ConfigParser|讀取ini檔案]]
 +==== PyCharm ====
 +  * [[https://​confluence.jetbrains.com/​display/​PYH/​Creating+and+running+a+Python+unit+test|How to run unittest?]]