нужно получить вывод без скобок '{' - PullRequest
1 голос
/ 04 мая 2019

Открытие текстового файла без фигурных скобок.Программа читает строки и отображает данные в фигурных скобках.

Example in my.txt file:
name
address
city state zip
phone


after code to read outputs to a label I get:
    {name}
    {address}
    {city} {state} {zip}
    {phone}

I would like it to read:
    name
    address
    city state zip
    phone

Я пробовал strip () Я пытался проверить, есть ли в pprint что-нибудь.код выглядит следующим образом:

def readprofile():
    profin = open("pbreg.txt", "r")
    msgstored = profin.readlines()
    data_label["text"] = msgstored
    profin.close()

after code to read, it outputs to a label with braces:
    {name}
    {address}
    {city} {state} {zip}
    {phone}

I would like it to read:
    name
    address
    city state zip
    phone
...