OP 08 July, 2023 - 08:35 PM
(This post was last modified: 08 July, 2023 - 08:54 PM by jeffyispenis.)
ok so im trying to make code that gives you a bunch of prompts asking your address and more for "social engineering" but when i start the python in 3.11 it instantly closes and i cant find the problem please help me the code is:
output_file = "info.txt"
fullname = int(input("\nWhat Is Your First And Last Name: "))
age = int(input("\nWhats Your Birthday + Age (EX: MM/DD/YY . your age): "))
adress = int(input("\nWhats Your Address (EX:123, yourstreet, yourcity, your zip code, your country): "))
phonenumber = int(input("\nyour phone number (EX:xxx-xxx-xxxx): "))
momsname = int(input("\nWhats Your Mom's Name: "))
dadsname = int(input("\nWhats Your Dad's Name: "))
with open(output_file, "a") as f:
f.write(fullname + age + adress + phonenumber + momsname + dadsname + "\n")
This is a bump
output_file = "info.txt"
fullname = int(input("\nWhat Is Your First And Last Name: "))
age = int(input("\nWhats Your Birthday + Age (EX: MM/DD/YY . your age): "))
adress = int(input("\nWhats Your Address (EX:123, yourstreet, yourcity, your zip code, your country): "))
phonenumber = int(input("\nyour phone number (EX:xxx-xxx-xxxx): "))
momsname = int(input("\nWhats Your Mom's Name: "))
dadsname = int(input("\nWhats Your Dad's Name: "))
with open(output_file, "a") as f:
f.write(fullname + age + adress + phonenumber + momsname + dadsname + "\n")
This is a bump