Python Forum
dictionary output to text file (beginner)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
dictionary output to text file (beginner)
#2
You could do that like this. First I need a dictionary containing some data:

# open any old text file
mytext = '/home/pedro/summer2023/breakingnewsenglish/UK_rationing.txt'
with open(mytext) as t:
    data = t.readlines()
print('data list is', len(data), 'long')
# make a dictionary
# all the keys are integers in this case, all the values are lines of text
mydict = {i:data[i] for i in range(len(data))}
# show the content of mydict
for item in mydict.items():
    print(item)
Now get some data from the dictionary and put it in a list

# an empty list to take the dictionary items you want to save in a text file
mylist = []
# just get the first 9 lines
for i in range(10):
    mylist.append(mydict[i])
# show the things to be saved to text
for m in mylist:
    print(m)
Now make the list into a string and write the string to the text file

# join the list to a string
# it is better to make a list than to create strings
# strings take up much more memory because they persist, so I have been told
mystring = ''.join(mylist)
# write the string to a text file
dict2text = '/home/pedro/summer2023/breakingnewsenglish/UK_rationing_part.txt'
with open(dict2text, 'w') as out:
    out.write(mystring)
    print('Some text from a dictionary saved as', dict2text)
3 steps to heaven! have fun learning!
Reply


Messages In This Thread
RE: dictionary output to text file (beginner) - by Pedroski55 - Jul-12-2023, 12:58 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  to find in dictionary given parameter 'name' and to output position Liki 10 1,647 Oct-08-2023, 06:38 AM
Last Post: Pedroski55
  Output File ? Kessie1971 11 2,386 May-11-2023, 08:31 AM
Last Post: buran
  beginner having text based adventure trouble mrgee 2 2,177 Dec-16-2021, 05:07 AM
Last Post: buran
  Using dictionary to find the most sent emails from a file siliusu 6 7,833 Apr-22-2021, 06:07 PM
Last Post: siliusu
  Updating dictionary in another py file tommy_voet 1 5,110 Mar-28-2021, 07:25 PM
Last Post: buran
  Making a dictionary from a file instyabam 0 1,579 Oct-27-2020, 11:59 AM
Last Post: instyabam
  how can i create a dictionary of dictionaries from a file Astone 2 2,383 Oct-26-2020, 02:40 PM
Last Post: DeaD_EyE
  Convert all actions through functions, fill the dictionary from a file Astone 3 2,586 Oct-26-2020, 09:11 AM
Last Post: DeaD_EyE
  Read text file, process data and print specific output Happythankyoumoreplease 3 3,033 Feb-20-2020, 12:19 PM
Last Post: jefsummers
  Parse text from a .txt file and save multiple output .txt rattlerskin 10 11,372 Aug-25-2019, 08:50 PM
Last Post: dwirsig

Forum Jump:

User Panel Messages

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