Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

atribuição + fatiamento #135

Open
villares opened this issue Jul 19, 2024 · 0 comments
Open

atribuição + fatiamento #135

villares opened this issue Jul 19, 2024 · 0 comments

Comments

@villares
Copy link
Owner

Na página https://github.com/villares/material-aulas/blob/main/Processing-Python-py5/mais_sequencias.md

Explicar que é possível usar a notação de fatiamento à esquerda em operações de atribuição. E mesmo que a variável seja global, não é preciso usar a instrução global!

>>>numeros = [10, 20, 30, 40, 50]

>>>numeros[2:] = 0
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: can only assign an iterable

>>>numeros[2:] = [0]
>>>numeros
[10, 20, 0]

>>> numeros[:] = [100, 200, 300]  
>>>numeros
[100, 200, 300]

Uma armadilha

frutas = ['uva', 'banana', 'maçã', 'kiwi']
frutas[2:] = 'jaca' 
print(frutas)  # ['uva', 'banana', 'j', 'a', 'c', 'a']

# parenteses ajuda?
frutas[2:] = ('jaca')
print(frutas)  # ['uva', 'banana', 'j', 'a', 'c', 'a']  

# note a vírgula... 
frutas[2:] = ('jaca',)  # agora sim uma tupla de um item 
print(frutas)  # ['uva', 'banana', 'jaca']  
# também funciona
frutas[2:] = ['jaca']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant