What's the value of this Python expression: "big" > "small"
Answers
Answered by
0
The given expression will return the False value.
Explanation:
Following are the python program for the given expression:
print ("big" > "small")
Output:
False
Learn more:
Compare sting: https://brainly.in/question/9029024
Attachments:
Similar questions