Posts by Nameless Man • 159 points
6 posts
-
-3
votes1
answer116
viewsQ: Python 3 Startup Issues after Deletion of Extra Files in Project Folder
I deleted some files from the project folder I was using and when I tried to open Python again, this message appeared: Internal error. Please report to http://jb.gg/ide/critical-startup-errors…
-
4
votes2
answers1430
viewsQ: .get in Python 3
Hello. I’m starting in python, and saw the following tutorial: phone_num = input("Numero De Telefone: ") Mapa_De_Digitos = { "1": "Um", "2": "Dois", "3": "Três", "4": "Quatro" } output = "" for ch…
-
2
votes1
answer1424
viewsQ: Oracle SQL Developer Table Creation
create table socio ( id_socio integer Not NULL, nome varchar(256) not NULL, cpf varchar(11) not NULL, email varchar(256), id_situacao integer, constraint socio_id_socio_PK primary key(id_socio),…
-
1
votes1
answer74
viewsQ: Doubt in the book Python on a Crash Course
I’m studying the book Python on a Crash Course And everything was going great until now. After testing the codes on pages 324 and 325 (which are a module and a program that uses it), I was surprised…
-
3
votes2
answers82
viewsQ: Dictionary error
What’s wrong with this dictionary? Dados = {'Alunos': { {'Nome': 'Jon', 'Notas':[8,9,6]}, {'Nome': 'Giglio', 'Notas':[7,6,5]}, {'Nome': 'Antony', 'Notas':[5,6,9]} } } for nome, info in…
-
5
votes2
answers502
viewsQ: Is it possible to use dictionaries inside lists in Python?
I need to scroll through a list that contains dictionaries and present the information of this one. But testing the attributes here .item() and .value() I couldn’t. Look: #6.8 - Animais de…
pythonasked Nameless Man 159