All code is in Python. Operations with strings and numbers are not allowed. Ordering of string characters: !,A,1,a (meaning 'A' < 'a'). Special Symbols: Blank: Space: Error: E
Q="A"
[1]
def Hello(Z) X="Hi " + Z Print(X)
Hello("Edward")
[1]
Y=7 E=7 Q=Y - E Print(Q)
[1]
Z=6 Print(Z)
def MyFunction (Z): Z=Z+8 Print(Z)
MyFunction(3) Print(Z+9)
[1]
if False: Print(1) elif False: Print(2) else: Print(3)