-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex.074.py
22 lines (20 loc) · 844 Bytes
/
ex.074.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'''from random import sample
a = tuple(sample(range(10), 5))
print(a)
print(f'O maior valor é {max(a)} e o menor é {min(a)}.')'''
#Jeito do curso em vídeo
from random import randint
numeros = (randint(1,10) , randint(1,10) , randint(1,10) , randint(1,10) , randint(1,10))
print('Os valores sorteados foram: ', end='')
for n in numeros:
print(f'{n} ', end='')
print(f'\n O maior valor sorteado foi {max(numeros)}')
print(f' O menor valor sorteado foi {min(numeros)}')
#Criado pelo Bing mas usa list comprehension para gerar a tupla de números aleatórios
'''from random import randint
numeros = tuple(randint(1,10) for _ in range(5))
print('Os valores sorteados foram: ', end='')
for n in numeros:
print(f'{n} ', end='')
print(f'\n O maior valor sorteado foi {max(numeros)}')
print(f' O menor valor sorteado foi {min(numeros)}')'''