ライブラリ(Python)

Python

[ライブラリ.py]Pyside6

#GUIfrom PySide6.QtWidgets import (  #アプリ全体を管理 QApplication,  #一番基本となるウィンドウや部品 QWidget,  #ボタン QPushButton,  #1行入力欄 QLine...
Python

[ライブラリ.py] sys

#システム機能を使うライブラリimport sys#コマンドライン引数を取得??#ファイル名を渡すらしいprint(sys.argv)#Pythonのバージョンを見るprint(sys.version)#osを調べる#ex:Windowsな...