Когда пользователь вводит имя и если оно пустое, имеет цифру, алфавитно-цифровую или не имеет символов ascii, я не собираюсь вставлять его в базу данных.
С этим кодом ниже он не принимает допустимый ввод, он работает только если я использую len
и isDigit
эти 2 условия.
while (len(f_name) == 0 or f_name.isdigit()
или
f_name.encode('ascii',errors='ignore') or f_name.isalnum()):
Create new user: Y/N ?y
Enter first name: ui
First name cannot be empty or have numeric values
Может кто-нибудь объяснить, как решить эту проблему? Спасибо за ваше время. Остальной код ниже:
import sqlite3
#connect a built in function to connect or create db
conn=sqlite3.connect('phonebook.db')
#Create a cursor function which allows us to do sql operations
crsr=conn.cursor()
#This function to check if table exists
def create_Table():
#Check if the table exists or not
crsr.execute("SELECT name FROM sqlite_master WHERE name='phonebook'")
tableSize=len(crsr.fetchall())#will be greater than 0 if table exists
if tableSize>0:
print()
else:
#create the table
crsr.execute(""" Create Table phonebook(
FirstName text NOT NULL,
LastName text,
Phone text PRIMARY KEY NOT NULL)
""")
#check if table got created or not
crsr.execute("SELECT name FROM sqlite_master WHERE name='phonebook'")
tableSize = len(crsr.fetchall()) # will be greater than 0 if table exists
if tableSize > 0:
print('Table was created successfully')
#This function will create new users and insert in DB
def create_User():
try:
while True:
rsp = input('Create new user: Y/N ?')
if rsp == 'y':
f_name = input('Enter first name: ')
# First name cannot be empty or have numeric values
while (len(f_name) == 0 or f_name.isdigit() or f_name.encode('ascii',errors='ignore') or f_name.isalnum()):
print('First name cannot be empty or have numeric values')
f_name = input('Enter first name: ')
l_name = input('Enter last name: ')
phone = input('Enter phone number: ')
crsr.execute("INSERT INTO phonebook VALUES (:FirstName, :LastName, :Phone)",
{'FirstName': f_name, 'LastName': l_name, 'Phone': phone})
conn.commit()
if rsp == 'n':
break
except:
print('UNIQUE constraint failed: phone number already exists')