Python Python 文字列の長さを比較数する hawk 2021-11-13 a = "xyz" b = "xy" print(a > b) # True b = "xyz" print(a > b) # False