📌  相关文章
📜  python 两个字符串相等 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:03.135000             🧑  作者: Mango

代码示例1
player_one_score = "100"
player_two_score = "100"

if player_one_score is player_two_score:
print("Player #1 and #2 have the same number of points.")
else:
    print("Player #1 and #2 do not have the same number of points.")