【Python】01.四則演算、変数、比較演算子、データ型

Python
スポンサーリンク

はじめに

Python勉強用のメモです。Google Colabで実行したりしてます。

Google Colab

四則演算

// 足し算 //
10 + 10
20

// 引き算 //
10 - 5
5

// 掛け算 //
10 * 10
100

// 割り算 //
100 / 10
10

// べき乗 (2*2*2) //
2**3
8

変数

a = 5
a
5

b = 10
b
10

a + b
15

c = 'niji_choco'
c
'niji_choco'

print(c)
niji_choco

比較演算子

1 < 5
True

1 > 5
False

1 == 1
True

1 == 5
False

1 != 2
True

1 != 1
False

5 >= 1
True

データ型

// 整数 //
a = 100
type(a)
int

// float //
b = 9.8
type(b)
float

// 複素数 //
c = 2j
type(c)
complex

// 文字 //
d = 'テスト'
type(d)
str

// フラグ //
e = True
type(e)
bool

// リスト //
f = []
type(f)
list

// 辞書 //
g = {}
type(g)
dict

// タプル //
h = ()
type(h)
tuple

コメント

タイトルとURLをコピーしました