You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got the following error following the simple demo code as shown on GitHub for the GH_CPython component. May I ask why this error is related to the print function which I didn't use at all?
Traceback (most recent call last):
File "C:\GH_CPython\PythonFileWritten_2.py", line 36, in <module>
import Grasshopper as gh
File "C:\GH_CPython\Grasshopper.py", line 99
print allLines[5]
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(allLines[5])?
The code is here:
"""
Python Script
Created on Wednesday October 2020 01:09:39
@author: AAA
[desc]
Description of the plugin Here
Write here any thing...
[/desc]
ARGUMENTS:
----------
<inp>
_input :[required] - [type = int] - [default = None]
Descripe your input here
* bullet point.
* bullet point
</inp>
<inp>
Other inputs go here ...
</inp>
RETURN:
----------
<out>
output_ : indicate your output description here. \n refers to a new line.
a :
b :
</out>
"""
import Grasshopper as gh
output_ = gh.addPoint(0, 4, 2)
a = gh.addPoint(-5, 10, 0)
p1 = gh.Point(0, 0, 0)
p2 = gh.Point(5, 5, 5)
b = gh.addLine(p1, p2)
The text was updated successfully, but these errors were encountered:
I got the following error following the simple demo code as shown on GitHub for the GH_CPython component. May I ask why this error is related to the print function which I didn't use at all?
The code is here:
The text was updated successfully, but these errors were encountered: