Posts by Raphael • 81 points
7 posts
-
1
votes1
answer166
viewsQ: Sorted for Bhaskara formula
I have an exercise to solve and I have a problem, it is not to be done in list or dictionary. If you have 2 real roots they should be printed in ascending order, the problem is that you should print…
-
2
votes1
answer145
viewsQ: Switch entering wrong case
I’m trying to solve the Uri 1038 problem using switch, apparently the values are merging, Item 3 for example, multiplying by 2 (5 x 2) returns the value 3. What I’m doing wrong here? #include…
-
0
votes0
answers264
viewsQ: Jump(Jump) method with more than one animation sequence
Friends I’m messing with the jumping animation of a character and this animation has two sequences, one of when walking, the other running: if (Input.GetKeyDown(KeyCode.Space) && liberaPulo…
-
0
votes1
answer8329
viewsQ: Formatting two decimal places using list (Python)
I have a question about the formatting of decimal digits using two houses, for example "2.00", I did this exercise but I have a little problem that I can not solve as I do not know if there is a way…
-
2
votes3
answers942
viewsA: Number greater than 7 in a Python list
From what I understand you want to find out which numbers are bigger than 7 on list A, so you need to filter to get numbers bigger than 7. I’m still crawling in Python, this is the way I got: (I…
-
2
votes1
answer3717
viewsQ: Ways to find out which is the largest and smallest number typed in the user input in a for
Well briefly I have a doubt whether there is a way to make this code otherwise more "simple". The code itself is already simple but wanted to know if there is another way using fewer lines or…
-
0
votes1
answer5595
viewsQ: Pair or odd through Random module (Python)
Recently I started learning programming language with python, I created a classic "game" to go learning with Random.randint for the user to try to guess which number was chosen by the machine. I…