#!/usr/bin/python3 import random # Example from Mark Forsyth, "The Elements of Eloquence", 02013. adjectives = 'lovely little old rectangular green French silver whittling'.split() def wrong(): result = adjectives[:] random.shuffle(result) return result if __name__ == '__main__': for ii in range(4): print('A', ' '.join(wrong()), 'knife?') print('A', ' '.join(adjectives), 'knife.')