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?

More than 1 year has passed since last update.

python基礎学習ログ

Posted at

2月21日(水)

1. 変数について

qiita.py
#  1 -1 aという変数の中に、数字の1を入れる
a = 1
#  1-2 bという変数の中に3を入れる
b = 3
#  1- 3 fiveという変数の中に、数字の5を入れる
five = 5

#  1-4 変数の中身の表示
print("aの中身は" , a)
print("bの中身は",  b)
print("fiveの中身は", five)

#  1-5 printは数字も表現できる
print(1)

#  1-6 printを使って全ての変数を表示
print(a, b, five)
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?