Answers for "leer fichero de texto con columnas como diccionario python"

0

leer fichero de texto con columnas como diccionario python

d = {}
with open("file.txt") as f:
    for line in f:
       (key, val) = line.split()
       d[int(key)] = val
Posted by: Guest on August-30-2020
0

leer fichero de texto con columnas como diccionario python

def get_pair(line):
    key, sep, value = line.strip().partition(" ")
    return int(key), value

with open("file.txt") as fd:    
    d = dict(get_pair(line) for line in fd)
Posted by: Guest on August-30-2020

Code answers related to "leer fichero de texto con columnas como diccionario python"

Python Answers by Framework

Browse Popular Code Answers by Language