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
""" | |
Installation | |
============ | |
Copy the script to your own preferred location. | |
Windows - You have to have Python 3.x installed on your system (https://www.python.org/downloads) | |
macOS - No need of Python installation |
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
import random, time, sys | |
def trybignumber(bignumber): | |
num = random.getrandbits(bignumber) | |
print(num) | |
file = open("number.txt", "w") | |
file.write("Current number : \n"+ str(num)) | |
file.close | |
loop = 0 | |
start = time.time() |
NewerOlder