def USD_EUR():
User = input(‘Enter your ID: ‘)
bl.execute(f”””SELECT UserID FROM users_balance WHERE UserID = ? ;”””, (User,))
if not bl.fetchone():
print(‘There is no user with this ID’)
else:
EUR = float(input(‘How many euro do you want to receive?: ‘))
что нужно добавить для проверки на то, что строка не пустая