import numpy as np
from numpy import random


numbers_1_10 = []
numbers_0_1 = []

print('Wylosowane liczby od 1 do 10')

for i in range(10):
    numbers_1_10.append(random.randint(1, 10))

print(numbers_1_10)

print('Losowe liczby od 0 do 1')

for i in range(10):
    numbers_0_1.append(round(random.random(), 3))

print(f'{numbers_0_1}')

daty = [1923, 1999, 2017, 2026, 1828]

print(f'Zbiór dat {daty}')
print(f'Losowa data ze zbioru: {random.choice(daty)}')
print(f'Losowe 3 daty ze zbioru: {random.choice(daty, 3)}')

print(daty)
random.shuffle(daty)
print(daty)