0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Pythonで「Pythonにおける変数とは」の動作を確認してみた

Posted at

概要

Pythonで「Pythonにおける変数とは」の動作を確認してみました。以下のページを参考にしました。

実装

以下のファイルを作成しました。

sample.py
tax = 1.08
print("オレンジの値段は" + str(120 * tax))
print("リンゴの値段は" + str(90 * tax))
print("バナナの値段は" + str(100 * tax))
tax = 1.1 # 税率が変更された場合に変更するのはこの1か所
print("オレンジの値段は" + str(120 * tax))
print("リンゴの値段は" + str(90 * tax))
print("バナナの値段は" + str(100 * tax))
sum = 80 + 72 + 84
print("テストの成績の合計は" + str(sum))
print("テストの成績の平均は" + str(sum/3))

以下のコマンドを実行しました。

$ python3 sample.py 
オレンジの値段は129.60000000000002
リンゴの値段は97.2
バナナの値段は108.0
オレンジの値段は132.0
リンゴの値段は99.00000000000001
バナナの値段は110.00000000000001
テストの成績の合計は236
テストの成績の平均は78.66666666666667

まとめ

何かの役に立てばと。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?