VBscript equivalent in python

330
1
09-19-2012 11:58 PM
AntonPrins
New Contributor
I need to translate this VBscript into Python:

"CTE :" & [CTE]  & vbNewLine & "Omschr: " & [OMSCHR]

It can't be really that difficult, but I can't find the right syntax. Please help:confused:
Tags (2)
0 Kudos
1 Reply
JakeSkinner
Esri Esteemed Contributor
Hi Anton,

Is this for a label expression? If so, you can use:

"CTE: " + [CTE] + "\n" + "Omschr: " + [OMSCHR]


Be sure that the Parser is set to 'Python'.
0 Kudos