jonhhy Posted July 15, 2022 at 08:33 AM Report Share #626459 Posted July 15, 2022 at 08:33 AM Bom dia comunidade P@P, tenho dúvida relacionada com o não reconhecimento dos caracteres \n (newline) 5MLM7C6.png . Disponível neste código: https://github.com/ManJ-PC/PExercises/blob/main/Json.ipynb ou # Dicionário em Python client = { "name": "Nora", "age": 56, "id": "45355", "eye_color": "green", "wears_glasses": False } # Obter uma string formatada em JSON client_JSON = json.dumps(client) client_JSON_B = json.dumps(client, sort_keys=True, indent=4 ) client_JSON_B O output foi: '{\n "age": 56,\n "eye_color": "green",\n "id": "45355",\n "name": "Nora",\n "wears_glasses": false\n}', em vez de: { "age": 56, "eye_color": "green", "id": "45355", "name": "Nora", "wears_glasses": false } Link to comment Share on other sites More sharing options...
M6 Posted July 15, 2022 at 09:36 AM Report Share #626461 Posted July 15, 2022 at 09:36 AM Não sei se percebi a tua dúvida de programação... Uma coisa são os valores outra é como vez os valores. 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar." Link to comment Share on other sites More sharing options...
jonhhy Posted July 15, 2022 at 11:42 AM Author Report Share #626463 Posted July 15, 2022 at 11:42 AM Certo M6, então concluo que tem a ver com a plataforma que não transforma o \n em newline (visualmente) Link to comment Share on other sites More sharing options...
iron Posted July 15, 2022 at 04:39 PM Report Share #626470 Posted July 15, 2022 at 04:39 PM Pelo que eu percebi, o client_JSON_B é uma string. Logo, numa string, o representante de um "newline" é representado com "\n". Eu não percebo de pyton, mas iria dizqer que se não queres os "\n" iria dizer que deve haver um parâmetro para tal. Cumprimentos, iron Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now