feat: Initial commit
This commit is contained in:
13
Laboratorio7/esercizio4.py
Normal file
13
Laboratorio7/esercizio4.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from random import randint
|
||||
|
||||
numbs = []
|
||||
|
||||
for i in range(20):
|
||||
numbs.append(randint(0, 99))
|
||||
print(i,":", numbs[i])
|
||||
|
||||
|
||||
numbs.sort()
|
||||
|
||||
for i in range(len(numbs)):
|
||||
print(i,":", numbs[i])
|
||||
Reference in New Issue
Block a user