NOSSO MENU

sexta-feira, 11 de outubro de 2019

DICIONARIO EM PYTHON

# dicionario dinamicodicd = {}
dicd['nome'] = str(input('digite o seu nome:'))
dicd['idade'] = int(input('digite a sua idade:'))
dicd['altura'] = float(input('digite a sua altura:'))

print(dicd)

sábado, 5 de outubro de 2019

matriz em python

# mais sobre matriz
matriz = [[0, 0, 0], [0, 0, 0], [0, 0, 0]]
x = 0y = 0soma = 0for x in range(0, 3):
for y in range(0,3):
matriz[x][y] = int(input(f'digite os valores [{x},{y}]'))
for x in range(0, 3):
for y in range(0, 3):
print(f'a matriz é [{matriz[x][y]}]')
if matriz[x][y]%2 ==0:
soma += matriz[x][y]
print('A soma e {}'.format(soma))

Redes Sociais

anuncios