Yesterday I received an email with grants from a bigcorp. One of the required skills was:
'Problem Solving Virtual Communication Digital Awareness Data and Device Security'
I've created some more potential skills using the same words:
import random
frase = 'Problem Solving Virtual Communication Digital Awareness Data and Device Security'
fraselst = frase.split()
for i in range(20):
random.shuffle(fraselst)
if 'and' not in [fraselst[0], fraselst[-1]]:
print(' '.join(fraselst))