Conteúdo do Curso
Estruturas de Dados em Python
Estruturas de Dados em Python
Adicionando Itens
Vamos criar um dicionário chamado student
.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
Aqui está como você pode adicionar um par chave-valor a um dicionário.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} student['country'] = 'USA' print(student)
O dicionário student
inclui estes pares:
Chave | Valor |
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
'country' | 'USA' |
Nota
As aspas simples
' '
e duplas" "
em Python são intercambiáveis e equivalentes.
Tarefa
- Construa o seguinte dicionário:
'name': 'Max', 'position': 'data scientist', 'level': 'junior'
; - No dicionário existente, acrescente uma nova chave chamada
experience
(como uma string) com o valor1
.
Obrigado pelo seu feedback!
Adicionando Itens
Vamos criar um dicionário chamado student
.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
Aqui está como você pode adicionar um par chave-valor a um dicionário.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} student['country'] = 'USA' print(student)
O dicionário student
inclui estes pares:
Chave | Valor |
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
'country' | 'USA' |
Nota
As aspas simples
' '
e duplas" "
em Python são intercambiáveis e equivalentes.
Tarefa
- Construa o seguinte dicionário:
'name': 'Max', 'position': 'data scientist', 'level': 'junior'
; - No dicionário existente, acrescente uma nova chave chamada
experience
(como uma string) com o valor1
.
Obrigado pelo seu feedback!
Adicionando Itens
Vamos criar um dicionário chamado student
.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
Aqui está como você pode adicionar um par chave-valor a um dicionário.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} student['country'] = 'USA' print(student)
O dicionário student
inclui estes pares:
Chave | Valor |
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
'country' | 'USA' |
Nota
As aspas simples
' '
e duplas" "
em Python são intercambiáveis e equivalentes.
Tarefa
- Construa o seguinte dicionário:
'name': 'Max', 'position': 'data scientist', 'level': 'junior'
; - No dicionário existente, acrescente uma nova chave chamada
experience
(como uma string) com o valor1
.
Obrigado pelo seu feedback!
Vamos criar um dicionário chamado student
.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
Aqui está como você pode adicionar um par chave-valor a um dicionário.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} student['country'] = 'USA' print(student)
O dicionário student
inclui estes pares:
Chave | Valor |
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
'country' | 'USA' |
Nota
As aspas simples
' '
e duplas" "
em Python são intercambiáveis e equivalentes.
Tarefa
- Construa o seguinte dicionário:
'name': 'Max', 'position': 'data scientist', 'level': 'junior'
; - No dicionário existente, acrescente uma nova chave chamada
experience
(como uma string) com o valor1
.