from, import, path, class
import output output.py is same directory
execute process
- pythonで他の.pyプログラムを実行する - Qiita
- pythonでプロセス関連のコマンドを勉強(fork,subprocess, kill) | 世界的日曜WEBプログラマー日記
p = subprocess.Popen( 'ls', stdin=subprocess.PIPE,stdout=subprocess.PIPE, close_fds=True, shell=True)
if name=="main"
parallel execute, concurrent futures executor
threadpoolexecutor submit
file read/write
deal binary, battle binary
- struct --- バイト列をパックされたバイナリデータとして解釈する — Python 3.8.3 ドキュメント
- struct --- バイト列をパックされたバイナリデータとして解釈する — Python 3.8.3 ドキュメント
- PythonでバイナリをあつかうためのTips - Qiita
return value
- NoneType
- Pythonでreturn、return None、return記述なし、の違い - Qiita
- return a, b
- result = hoge()
- result[0] -> a, result[1] -> b
- result = hoge()
unixtime and datetime
EOF
line break code, CR(Carriage Return) / LF(Line Feed)
pythonにおいては、改行コードを文字列として表すのだけど、それぞれ ・CR : '¥r' ・LF : '¥n' ・CR+LF : '¥r¥n'