Generator random country address | Tips/Suggestions | Crax

Welcome To Crax.Pro Forum!

Check our new Marketplace at Crax.Shop

   Login! SignUp Now!
  • We are in solidarity with our brothers and sisters in Palestine. Free Palestine. To learn more visit this Page

  • Crax.Pro domain has been taken down!

    Alternatives: Craxpro.io | Craxpro.com

Generator random country address

Generator random country address

LV
1
 

yohilax951

Member
Joined
Dec 20, 2023
Threads
67
Likes
32
Awards
5
Credits
3,745©
Cash
0$
import random
import string

def generate_fake_address():
countries = ["Neverland", "Wakanda", "Atlantis", "Eldorado"]
states = ["Dreamland", "Fantasia", "Narnia", "Wonderland"]

country = random.choice(countries)
state = random.choice(states)
zip_code = ''.join(random.choices(string.digits, k=5))
address = f"{random.randint(1, 100)} {random.choice(string.ascii_letters)} Street"

return f"Address: {address}\nState: {state}\nCountry: {country}\nZip Code: {zip_code}"

# Example usage
fake_address = generate_fake_address()
pri
nt(fake_address)
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips
Tips
Top Bottom