Python Forum
Saving the print result in a text file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Saving the print result in a text file
#9
(Sep-25-2022, 06:05 PM)Calli Wrote: where do I insert this line of code?
You should learn to test out code when get solutions.
It's after results(you make a set) line 30 in your code.
Both mine and perfringo(a little fancier🎈) code dos the same.
# Make a test set
results = {'1.255.255.254', '2.255.255.254', '3.255.255.254'}

with open('ip_out.csv', 'w') as fp:
    print(*results, sep='\n', file=fp)

with open('ip_out1.csv', 'w') as fp:
    for ip in results:
        fp.write(f'{ip}\n')
In files,and Sets dos not have order.
Output:
2.255.255.254 3.255.255.254 1.255.255.254
Calli likes this post
Reply


Messages In This Thread
Saving the print result in a text file - by Calli - Sep-24-2022, 04:22 PM
RE: Saving the print result in a text file - by snippsat - Sep-25-2022, 06:38 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Cannot get cmd to print Python file Schauster 11 384 Yesterday, 04:40 PM
Last Post: xMaxrayx
  How to Randomly Print a Quote From a Text File When User Types a Command on Main Menu BillKochman 13 1,153 Apr-24-2024, 05:47 AM
Last Post: Bronjer
  Start print a text after open an async task via button Nietzsche 0 741 May-15-2023, 06:52 AM
Last Post: Nietzsche
Thumbs Up Need to compare the Excel file name with a directory text file. veeran1991 1 1,172 Dec-15-2022, 04:32 PM
Last Post: Larz60+
  Saving the times a script is run to a file or ... 3Pinter 7 1,508 Oct-19-2022, 05:38 PM
Last Post: 3Pinter
  Code Assistance needed in saving the file MithunT 0 850 Oct-09-2022, 03:50 PM
Last Post: MithunT
  Modify values in XML file by data from text file (without parsing) Paqqno 2 1,760 Apr-13-2022, 06:02 AM
Last Post: Paqqno
  failing to print not matched lines from second file tester_V 14 6,262 Apr-05-2022, 11:56 AM
Last Post: codinglearner
  Print to a New Line when Appending File DaveG 0 1,249 Mar-30-2022, 04:14 AM
Last Post: DaveG
  Print text with big font and style tomtom 5 14,399 Mar-03-2022, 01:29 AM
Last Post: tomtom

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020