171k views
4 votes
is "a dog" smaller or larger than "a mouse"? is 9999+8888 smaller or larger than 100*100? replace the plus sign in the following code to let python check it for you and then answer.

User KItis
by
8.5k points

1 Answer

5 votes

Answer:

"A dog" is not a quantifiable size, so it is not possible to compare it to "a mouse" in terms of size.

In terms of numerical value, 9999+8888 is larger than 100*100. To check this in Python, you can use the following code:

if 9999+8888 > 100*100:

print("9999+8888 is larger than 100*100")

else:

print("9999+8888 is not larger than 100*100")

This will output "9999+8888 is larger than 100*100".

Step-by-step explanation:

User Michael Grigsby
by
8.4k points

Related questions

asked Mar 8, 2019 76.4k views
Edward Loper asked Mar 8, 2019
by Edward Loper
8.4k points
2 answers
4 votes
76.4k views
asked Feb 11, 2019 204k views
SirOneOfMany asked Feb 11, 2019
by SirOneOfMany
7.6k points
2 answers
2 votes
204k views