Python

操作方法
1.「コントロールパネル」 -> 「システム」 ->「システムの詳細設定」をクリックします。

2.「環境変数」を開きます

3.変数「Path」を選択し、「編集」をクリックします。 ...

Python

演算子
「x < y」、「x <= y」、「x > y」、「x >= y」、
「x == y」、「x != y」、「x is y」、「x is not y」
「x in y」、「x no ...

Python

構文
if 条件式1:
`条件式1がTrueの場合処理コード`
elif 条件式2:
`条件式1がFalseで条件式2がTrueの場合処理コード`
中略
else:
`条件式がF ...

Python

構文
if 条件式1:
`条件式1がTrueの場合処理コード`
elif 条件式2:
`条件式1がFalseで条件式2がTrueの場合処理コード`
中略
else:
`条件式がF ...

Python

構文
.clear()

サンプルコード
# coding: utf-8

cft = set()

# すべての要素を削除する
cft.clear();
print(cf ...

Python

pythonコード
# coding: utf-8

cftA = {“apple”,”pear”,”CC”}
cftB = {R ...

Python

構文
.remove(要素)

サンプルコード
# coding: utf-8

tt = {10,11,12,13}

tt.remove(12)

print(tt) ...

Python

構文
.discard(要素)

サンプルコード
cft = {10, 21, 12}

cft.discard(21)
print(cft)

結果
{10, 12} ...

Python

サンプルコード
# coding: utf-8

cft = {“red”,”yellow”,”blue”}

cft.add( ...

Python

サンプルコード
x = {“a”, “b”, “c”}
y = {“f”, “d”, “ ...

Python

構文
set.union(set1, set2…)

サンプルコード
x = {“apple”, “banana”, “cherry&# ...

Python

書式
変数 = lambda 引数 : 戻り値

サンプルコード

def testFunc(i,j): cft = j(20,18) return i + "is" + str(cft)print(testFu ...

Python

書式
変数 = lambda 引数 : 戻り値

サンプルコード
y = lambda m : “A”+ m + “2020”
print(y(R ...

Python

方法1  書式
for インデックス in range(len(配列))

cft =
for itemIndex in range(len(cft)):
print(“要素のイン ...

Python

サンプルコード

# coding: utf-8import rem = ""n = re.search(m,'TEST')if n: print(n.group(0))else: print(n)

 

Python

サンプルコード
#!/usr/bin/python3
import math

print (“math.ceil(-45.17) : “, math.ceil(-45.17))

Python

構文
集合A.union(集合B)
集合A|集合B
サンプルコード

#!/usr/bin/ruby# -*- coding: UTF-8 -*-setA = {"AA01","BB02","CC03"," ...

Python

構文
リスト名 =
数値 in リスト名
in文を使用して、指定要素が含まれているかを確認します。
使用例

cftLst = print("33が含まれているか")print(33 in cftL ...