??? Need some help writing a code.
Announcement
Collapse
No announcement yet.
Anyone here know Python Script
Collapse
X
-
Code:pntidList = ["1","2","3","4"] constantString = "GE_Grass_" mergedList = [ constantString + x for x in pntidList]
press the > (play button) in the middle, then type mergedList in the right hand side.
Not an expert at Python though. Note that the pntidList has to be string if it is integers you will need to do some kind of conversion int->string, since in Python you cannot (as far as I know) concatenate int to string values.
Comment
Comment