Computer Science, asked by asksavvy5444, 11 months ago

What's the value of this Python expression: "big" > "small"

Answers

Answered by codiepienagoya
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