os.system(r"C:\Users\JChen46\Desktop\testUpload.exe")
加个r就是告诉python不要转义
或者
os.system("C:\\Users\\JChen46\\Desktop\\testUpload.exe")