11 lines
153 B
Python
Executable File
11 lines
153 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import random
|
|
|
|
teams=['AVN', 'Desktop', 'Security', 'Systems']
|
|
|
|
order=random.sample(range(4), 4)
|
|
|
|
for i in order:
|
|
print( teams[i] )
|