Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdannyarmstrong authored Feb 9, 2022
1 parent b4e5c6c commit 701dbdd
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Pynari.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import random
def main():
running = 1
while (running == 1):
bit1 = str(random.randrange(2))
bit2 = str(random.randrange(2))
bit3 = str(random.randrange(2))
bit4 = str(random.randrange(2))
bit5 = str(random.randrange(2))
bit6 = str(random.randrange(2))
bit7 = str(random.randrange(2))
bit8 = str(random.randrange(2))
print(bit1 + bit2 + bit3 + bit4 + bit5 + bit6 + bit7 + bit8)
main()

0 comments on commit 701dbdd

Please sign in to comment.