Posts by Luiz Rodrigo • 13 points
3 posts
-
0
votes0
answers22
viewsQ: C: How to read an indeterminate number of integers on the same line that still recognizes n?
I need to read an indeterminate number of integers on the same line to pass to a chained list, however in case no number is entered(" n"), I still need to recognize it to treat it. there’s some…
-
-1
votes1
answer29
viewsQ: How to format the date to the Brazilian standard in an attribute of type "DATEONLY" using sequelize?
I own a model with a date attribute of type DATEONLY, when I step into the body of the request 01/02/1999, and the return is "date": "1999-01-02". How can I format for the Brazilian standard? date:{…
-
-3
votes1
answer147
viewsQ: Python: How to get a dictionary key based on the value?
I have a dictionary in table format={"t":148} I can return 148 by doing table["t"], right? How can I make to return "t" based on the 148? When I try to print table[148] ends up returning "None",…