<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.6000.16788" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>I had a task in a book to pick 5 items from a list
of 26 ensuring the items are not repeated</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>import random<BR>list =
['a','b','c','d','e','f','g','h','i','j','k','l','m',<BR>
'n','o','p','q','r','s','t','u','v','w','x','y','z']<BR>word = ' '<BR>a =
random.choice(list)<BR>list.remove(a)<BR>b =
random.choice(list)<BR>list.remove(b)<BR>c =
random.choice(list)<BR>list.remove(c)<BR>d =
random.choice(list)<BR>list.remove(d)<BR>e =
random.choice(list)<BR>list.remove(e)<BR>word = a + b + c + d + e<BR>print
(word)<BR>print(list)</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV></BODY></HTML>