文字列の比較

 

 

IDLE Shell画面で実行結果

 

#  PythonとPythonと比較(一致しないときTrue)

>>>print('Python' == 'Python')

True

 

# VBAとVBと比較(一致しないときTrue)

>>>print('VBA' == 'VB')

False

 

# PythonとPythonと比較(一致しないときTrue)

>>>print('Python' != 'Python')

False

 

# VBAとVBと比較(一致しないときTrue)

>>>print('VBA' != 'VB')

True    

 

# PythonとPythonと比較

>>>print('Python' <= 'Python') 

True

 

# PythonとPythonと比較(アルファベット順では、PythonはPythonより前のときTrue)

>>>print('Python' < 'Python')

False

 

# ABとVBと比較(アルファベット順では、ABはVBより前のときTrue)

>>>print('AB' < 'VB')

True

 

 

#から始まるのはコメントとなります。人間が読むもので、プログラム実行時、コンピューターに無視されます。

青字の部分、>>>の後ろは、実行命令で、その次の行は、実行結果となります。

 

 

 

 

実行結果

 

 

 

 

関連記事