I have a real beginner question. I would like to do the following:
FileName1 = open(r'C:\Users\data.txt')
PointID = '1'
Now, I'd like to create a new variable that is set to be equal to File1, i.e. a concatenation of File and PointID, or something like this if the variables were both strings:
FieldFile = FileName + PointID
Could anyone suggest a way to combine these into one variable called FieldFile?
Much Appreciated.