Home > 文字列の比較


文字列の長さに基づいて比較する方法

文字列の長さを比較する方法: 文字列の長さを比較するには、比較する文字列の長さを取得し、それらを比較します。以下はPythonの例です。str1 = "Hello" str2 = "World" if len(str1) > len(str2): print("str1 is longer than str2") elif len(str1) < len(str2): print("str2 is longer than str1") else: print("str1 and str2 have the same length")>>More