学生向けプログラミング入門 | 無料
id:MrRadiology
Python | 05 | 条件判定するプログラム if
ランキング参加中プログラミング [TOP] 次>> ターミナルを開いて次の条件判定するプログラムを作ってみましょう。 【iftest1.py】 # iftest1.py print( '1st message' ) print( '2nd message' ) if 10 > 100 : print( 'select true' ) else: print( 'select false' ) print( 'last message') では、プログラムの内容をみて…