This is weird, I wonder if someone can explain it to me.
Why is the print() function behavior different when using format or not?
a = 1
b = 2
print("Value a: ",a)
print("Value b: ",b)
print("a: {0}, b: {1}".format(a,b))
result of the above code is this:
Why does it print brackets in the first two lines and not the third one?
How can I configure RhinoPython to disregard “from future import print” or whtaver it is.
I want to use Brackets always when I print and not show them in the command line.
Don’t ask me, I never used it. All I know is that print changed from a statement to a function in P3. You might Google around and see how to correctly import it - if it is implemented in IronPython…