管道重定向输出 发表于 2021-09-27 更新于 2022-10-29 分类于 python多进程和多线程 这是文章开头,显示在主页面,详情请点击此处。 简介 123456789101112131415# coding:utf-8import systext = sys.stdin.read()words = text.split()wordcount = len(words)print(text,'\n',words)print('Wordcount:',wordcount)print('text type is %s' %type(text))# a = 'apple app'# print(a.split())