`a=780
b=90
if (a>b):
print(a>b)`
- I do not want to print boolean
- I just want to print (a) and print(>) and print(b)
`*** Thanks for your help
CodePudding user response:
You could use print(a,' > ',b)
. Please take a look at https://www.w3schools.com/python/gloss_python_string_concatenation.asp.