以下實例演示了Python所有比較運算符的操作: #!/usr/bin/python3 a = 21 b = 10 c = 0 if ( a == b ): print ("1 - a 等于b") else: print ("1 - a 不等于b") if ( a ...
確定! 回上一頁