tom code example
Example: tom
import pandas as pd
while True:
print('Welcome to profiles creator!')
CreateDict = str(input('Do you want to create a new profile? (y/n): '))
if CreateDict == 'y' or CreateDict == 'yes':
Dict = dict()
elif CreateDict == 'n' or CreateDict == 'no':
break;
else:
print('Insert valid character!')
Username = str(input('Username: '))
Passwd = str(input('New password: '))
BirthDate = str(input('Date of birth (MM/GG/YY): '))
Notes = str(input('Addition optional info: '))