daniil-vlasenko

7.7

Jun 21st, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. from random import randrange as rnd
  2. xx = list(map(int,"1 7 2 5 9 10 29 49 78 56 45 23 98 123 234 67".split()))
  3. print(xx)
  4.  
  5. while 1:
  6. x = rnd(1,1001)
  7. print(x)
  8. if x in xx:
  9. break
Add Comment
Please, Sign In to add comment