def USD_RUB():
User = float(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:
user_money = bl.fetchone()
USD = float(input(‘How many dollars would you like to exchange?: ‘))
if USD < user_money[2]:
print("You do not have enough funds to exchange")
return
Исправь ошибку