Upload _594_159_447_252.py
Browse files- _594_159_447_252.py +19 -0
_594_159_447_252.py
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# -*- coding: utf-8 -*-
|
2 |
+
""".594.159.447.252
|
3 |
+
|
4 |
+
Automatically generated by Colab.
|
5 |
+
|
6 |
+
Original file is located at
|
7 |
+
https://colab.research.google.com/drive/16xIBPUPKKm34n_Y1lh5teBt-c_uaPuoG
|
8 |
+
"""
|
9 |
+
|
10 |
+
import random
|
11 |
+
|
12 |
+
def generate_phone_number():
|
13 |
+
area_code = random.randint(100,999)
|
14 |
+
exchange_code = random.randint(100,999)
|
15 |
+
subscriber_number = random.randint(1000,9999)
|
16 |
+
return f"({area_code}) {exchange_code}-{subscriber_number}"
|
17 |
+
|
18 |
+
phone_number = generate_phone_number()
|
19 |
+
print("Mentioning You", generate_phone_number())
|