python two string equal

Solutions on MaxInterview for python two string equal by the best coders in the world

showing results for - "python two string equal"
Emmie
12 Sep 2020
1player_one_score = "100"
2player_two_score = "100"
3
4if player_one_score is player_two_score:
5print("Player #1 and #2 have the same number of points.")
6else:
7	print("Player #1 and #2 do not have the same number of points.")