Python基本概念と操作
Pythonのダウンロードリンク:
https://www.python.org/downloads/release/python-3104/
PyCharmのインストール:
https://www.jetbrains.com.cn/
コメントとリテラル
"""
複数行のコメント
"""
# 1行のコメント
変数とデータ型
balance = 200
print("残高:", balance)
balance_type = type(balance)
print(balance_type)
データ型の変換
number = 200
str_number = str( ...
6月26日 18:13 投稿