このエラーは何を意味しますか?何か:TypeError: 'str'と 'list'オブジェクトを連結できませんか?
TypeError: cannot concatenate 'str' and 'list' objects
は、ここでは、コードの一部です:
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
コードを投稿できますか? –
それは私の答えが今あなたのために働く。 – Triptych
else == '52 .62263。 ':< - はPythonの構文エラーです – SilentGhost