ベクトル内で変数が繰り返し出現する回数を見つける方法
方法1: ループを使用する方法def count_variable_occurrences(variable, vector): count = 0 for element in vector: if element == variable: count += 1 return count # 使用例 r = [1, 2, 3, 2, 1, 2, 3, 4, 5, 1] variable = 2 occurrences = count_variable_occurrences(variable, r) print(f"The va>>More