For1. The integers K and N (N > 0) are given. Output N times the number K.

import random

N = random.randrange(10)+1
#K = random.uniform(-10, 10)
K = random.randrange(-10, 10)

print('K = ', K)
print('N = ', N)
for i in range(0, N):
print(i+1," : ",K)