Лабораторная №1, shuffle

Apr 16, 2010 14:16


# -*- coding: cp1251 -*-
import random
file = open('text.txt','r')
wordsList = file.read().split()
file.close()
random.shuffle(wordsList)
for i in range(0,len(wordsList)):
    print wordsList[i]

text.txt:

Привет! Пока!
Бай! Гудбай! Чао!
Какава! Кофе!
Бутерброд!

python

Previous post Next post
Up