#!/usr/bin/python l1=['hi','hello','welcome'] f=open('f1.txt','w') for ele in l1: f.write(ele+'\n') f.close() The list is iterated, ...
確定! 回上一頁