-
-
Save racterub/2b8a84bed6b4535b560a06167b6723f2 to your computer and use it in GitHub Desktop.
123
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/lib/env python | |
import random | |
f = open('abc.txt', 'w') | |
a = {'a':'dads', 'b':'offw', 'c':'dadwa', 'd':'gagra', 'e':'dadwadf', 'f':'dadwafd'} | |
for i in random.sample(a.items(), 6): | |
f.write(str(i) + "\n") | |
f.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment