services_array = []
passwords_array = []
def main_program():
user_service = input("Il nome del servizio è: ")
services_array = [user_service]
user_password = input("Inserisci la password: ")
passwords_array = [user_password]
def show_inputs(services_array, passwords_array):
for services in services_array:
for passwords in passwords_array:
print (services + " --------- "+ passwords)
main_program()
show_inputs(services_array, passwords_array)
I'm new to python and I'm using Pycharm to write my code. I just started writing this password manager and when i run it I have some problems: 1. It does not print out your inputs 2. It closes right after you insert your inputs They could sound so stupid to you guys but since I'm not an expert coder, I'm struggling resolving them. Hope you can help me. Thanks!