-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfake-name-creator.py
34 lines (24 loc) · 1.48 KB
/
fake-name-creator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import random
#countries
def german():
de_nach = ["Mueller", "Schmidt", "Lange", "Meyer", "Schröder", "Ahlers", "Schäfer", "Hartmann", "Groß", "Klein", "Seifert", "Riedel", "Eckert", "Weber", "Krause", "Schmitz"]
de_vor = ["Patrizia ", "Marie ", "Paul ", "Sophie ", "Alexander ", "Maria ", "Maximilian ", "Sofia ", "Elias ", "Emilia ", "Ben ", "Emma ", "Louis ", "Hanna ", "Leon ", "Mia ", "Noah ", "Anna ", "Henry ", "Johanna ", "Felix ", "Katharina ", "David ", "Lena ", "Tim ", "Lea ", "Alexander ", "Laura ", "Jan ", "Lisa ", "Dominik ", "Vanessa ", "Phillip ", "Sara ", "Florian ", "Maria ", "Christian ", "Sabrina ", "Patrick ", "Julia ", "Matthias ", "Nadine ", "Markus ", "Nicole ", "Moritz ", "Greta ", "Paul ", "Charlotte ", "Felix "]
vorname = random.choice(de_vor)
nachname = random.choice(de_nach)
return(vorname + nachname)
#agreement
print("The creator accepts no liability for crimes committed with the help of this program.")
print("This program is intended for jurnalists / reporters who want to protect their sources with fake names")
print("Do you accept that you will not use the fake names for illegal activities? (y/n)")
accept = input("")
if accept == "y":
#select country
print("fake name creator")
print("")
print("1. Germany")
print("")
choice = input("Enter the number of the country where your fake name should come from:")
if choice == str(1):
print("")
print("Your German fake name is:")
print(german())