在Python中,可以使用以下步骤从input.txt文件中创建输出txt文件中的奇偶列表:
open()
函数来打开文件,并使用read()
方法来读取文件内容。例如:with open('input.txt', 'r') as file:
content = file.read()
split()
方法将内容按照空格或换行符分割成多个元素,并将其存储到一个列表中。例如:numbers = content.split()
numbers
列表,并根据元素的值判断其奇偶性,并将其分别存储到两个不同的列表中。例如:even_list = [num for num in numbers if int(num) % 2 == 0]
odd_list = [num for num in numbers if int(num) % 2 != 0]
open()
函数以写入模式打开一个新的输出文件,并使用write()
方法将奇偶列表写入文件中。例如:with open('output.txt', 'w') as file:
file.write("Even numbers:\n")
file.write('\n'.join(even_list))
file.write("\n\nOdd numbers:\n")
file.write('\n'.join(odd_list))
完成以上步骤后,将会在当前目录下创建一个名为output.txt的文件,其中包含了从input.txt文件中提取的奇数和偶数列表。
请注意,以上代码示例中并未提及腾讯云相关产品和产品介绍链接地址,因为在这个具体的问答内容中并没有与云计算相关的需求。如果您有其他关于云计算的问题,我将很乐意为您提供相关的答案和推荐腾讯云的产品。
领取专属 10元无门槛券
手把手带您无忧上云