Posts by Ruann Yury • 3 points
2 posts
-
0
votes1
answer36
viewsQ: Attributeerror: type Object 'User' has no attribute 'order_by' - Sqlalchemy
I am trying to sort the Transaction table id accordingly: from sqlalchemy import desc from sqlalchemy.orm import query from website.models import Transaction def home(): transactions =…
-
0
votes3
answers325
viewsQ: Occurrence of a digit on an integer using Python
Given an integer n, n > 0, and a digit d, 0 <= d <= 9, determine how many times d occurs in n. def main(): ocorrencia = 0 numeroReal = int(input("Digite um número inteiro positivo:\n"))…