mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
10 lines
158 B
Python
Executable file
10 lines
158 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import random
|
|
|
|
|
|
def randbyte():
|
|
return random.randrange(0, 256)
|
|
|
|
|
|
print("127.{}.{}.{}".format(randbyte(), randbyte(), randbyte()))
|