Posts by skulden • 31 points
3 posts
-
1
votes1
answer67
viewsA: Function "Procv" with pyspark
Lucas, This is called Join and there are some types such as: Left Join, right Join, Inner Join, left Outer Join, right Outer Join, etc... Each type of Join has a purpose, I suggest a brief reading…
-
1
votes2
answers1621
viewsA: How to use Excel’s "PROCH" function to fetch values from the bottom up?
It is not possible, as the logic of PROCH is from top to bottom, just as PROCV is from left to right, always from the first line, to PROCH, or first column, to PROCV. A solution for your case is the…
-
0
votes4
answers11441
viewsA: A list to receive 20 whole numbers and store in a list and print the largest element in the list
lista = [] while len(lista)+1 <= 20: lista.append(int(input("Digite um número: "))) print ("O maior valor é: ", max(lista))