What does : TypeError: cannot concatenate 'str' and 'list' objects mean??
I'm getting this error.. and I know it's saying I'm trying to add a string and a number maybe? but I'm not sure how to fix it
Here's part of the code:
for j in ('90.','52.62263.','26.5651.','10.8123.'):
if j == '90.':
z = ('0.')
elif j == '52.62263.':
z = ('0.', '72.', '144.', '216.', '288.')
for k in z:
exepath = os.path.join(exe file location here)
exepath = '"' + os.path.normpath(exepath) + '"'
cmd = [exepath + '-j' + str(j) + '-n' + str(z)]
process=Popen('echo ' + cmd, shell=True, stderr=STDOUT )
print process
Sorry thought I posted it