I am trying to print several things on the same line using different calls on the Sikuli IDE, but I'm apparently unable to do so.
What I would do on python as:
print("Doing a sum: ", end="")
x=2+5
print(x)
>> Doing a sum: 7
On Sikuli IDE (2.0.5 for what is worth), I'm getting this error (line 44 is where the print is):
[error] script [ test_framework ] stopped with error in line 44 at column 54
[error] SyntaxError ( "mismatched input '=' expecting RPAREN", )
I've tried different combinations as well as parameters (some flush=True
as well), but to no avail.
Did anyone ever try this before? Any solution?
Thanks