scripts

random scripts
git clone https://git.parazyd.org/scripts
Log | Files | Refs

qq (177B)


      1 #!/usr/bin/env python3
      2 
      3 from random import randint
      4 
      5 
      6 bible = open('/home/parazyd/quotes').read()
      7 bible = bible.split('\n\n')
      8 rand = randint(0, len(bible)-1)
      9 
     10 print(bible[rand])