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