initial commit of bin scripts into git

This commit is contained in:
2023-11-08 13:38:19 +11:00
commit 3735eea3c6
113 changed files with 11631 additions and 0 deletions

10
choose.py Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/python3
import random
teams=['AVN', 'Desktop', 'Security', 'Systems']
order=random.sample(range(4), 4)
for i in order:
print( teams[i] )