Text.py 396 B

12345678910111213141516
  1. # import subprocess
  2. #
  3. # a = subprocess.Popen('dir;dir',shell=True,stdout=subprocess.PIPE,stderr=subprocess.PIPE,
  4. # cwd=r'C:\Users\宋子桓\Desktop\Git_Test')
  5. # # print(a.stdout())
  6. # a.wait()
  7. # print(a.returncode)
  8. # while True:
  9. # i = a.stdout.readline().decode('utf-8')
  10. # if i == '':break
  11. # print(i,end='')
  12. a = '&&'
  13. # b = ['1','2','3']
  14. b = ['1']
  15. print(a.join(b))