Answers for "python list to txt"

7

convert python list to text file

# define list of places
places = ['Berlin', 'Cape Town', 'Sydney', 'Moscow']

with open('listfile.txt', 'w') as filehandle:
    for listitem in places:
        filehandle.write('%s\n' % listitem)
Posted by: Guest on August-20-2020
0

txt to list python

with open('names.txt', 'r') as f:
    myNames = [line.strip() for line in f]
Posted by: Guest on July-11-2021
1

list to text file python

with open('your_file.txt', 'w') as f:
    for item in my_list:
        f.write("%s\n" % item)
Posted by: Guest on January-05-2021
0

lista to txt python

#Salvar lista em .txt
with open('your_file.txt', 'w') as f:
    for item in my_list:
        f.write("%s\n" % item)
Posted by: Guest on November-27-2020
0

write list of dictionaries to json python

def filewriter(line):
    dictionary = {}
    dictionary['name'] = line[0][0] #assume this is a a string
    dictionary['item_to_buy'] = line[0][1]
    dictionary['currency'] = line[0][2]
    dictionary['league'] = line[0][3]
    with open('logs.json', 'r+') as f:
        if len(f.read()) == 0:
            f.write(json.dumps(dictionary))
        else:
            f.write(',\n' + json.dumps(dictionary))

def retrieve():
    with open('logs.json') as f:
        g = json.load(f)
        print(g[1]['name'])
Posted by: Guest on November-30-2019
6

python list

#Creating lists
my_list = [1, "Hello", 3.4, 0, "World"]
my_nested_list = [['Hello', 'World'],[47,39]]

#Accessing lists
my_list[1] # Hello
my_list[-2] # 0
my_list[:3] # [1, "Hello", 3.4]
my_nested_list[1] #[47,39]
my_nested_list[0][1] # World
Posted by: Guest on May-21-2020

Python Answers by Framework

Browse Popular Code Answers by Language