ImportError: cannot import name 'TypeAliasType' from 'typing_extensions' (/usr/local/lib/python3.7/site-packages/typing_extensions.py)のエラーがでてたけど python python
ImportError: cannot import name 'TypeAliasType' from 'typing_extensions' (/usr/local/lib/python3.7/site-packages/typing_extensions.py)のエラーがでてたけど
pip install fastapi-sqlalchemy
をいれなおしたらでなくなった
pyth
2024-01-31 14:08:00
pythonでコマンドを実行し結果を返値で取得 python python
pythonでコマンドを実行し結果を返値で取得
import subprocess
r=subprocess.run("ls", capture_output=True, text=True).stdout
# Python 3.7以降限定 capture_output=True , Python 3.6以前は代わりにstdout=subprocess.PIPE と stderr
2023-01-28 01:43:59
Pythonでは文字列や数値の右にゼロを詰める(ゼロパディング)する場合、zfill関数を使うと便利 python python
Pythonでは文字列や数値の右にゼロを詰める(ゼロパディング)する場合、zfill関数を使うと便利
例)
s = "c"
print( s.zfill( 2 ))
print( s.zfill( 8 ))
#0c
#0000000c
2023-01-11 21:33:48