Write a piece of Python code that prints out one of the following messages: "string involved" if either varA or varB are strings "bigger" if varA is larger than varB "equal" if varA is equal to varB "smaller" if varA is smaller than varB
and the question is???
I think that is the L2 Problem 11, I mean the statement, remember only if one of those are strings, you should print "string involved", if they're not, (both number) tell if is bigger, equal or smaller.
If you are asking how this is done this is not that hard. Here is some pseudocode. If varA or varB is a string then print "string involved" else if varA is greater than varB then print "bigger" else if varA is equal to varB then print "equal" else print "smaller" Even though this is pseudocode it almost matches real code since it is a fairly simple problem. To change this to actual code should not take much.
If (type(varA)==string) or (type(varB)== string: print "string involved" elif varA >varB: print "bigger" elif varA <varB: print "equal" else: print "smaller"
Join our real-time social learning platform and learn together with your friends!