Was tinkering around in Python after a long hiatus, and decided to do a very simple fake telephone generator. Anything I can do to improve it? import random areacode = input(“Enter your desired area code prefix: “) print(areacode + “-“, end=”) for i in range(3): print(random.randint(0,9), end=”) print(“-“,end=”) for j in range(4): print(random.randint(0,9), end=”)Read more