Posts by Othon Oliveira • 1 point
2 posts
-
0
votes5
answers14983
viewsA: How to merge multiple dates frames into one
## Load Spreadsheet, separator "," (Planilha sepada por vígula) obs_1 <- read.csv("constituents-financials-observations-1.csv") head(obs_1) ## Visualizing data…
ranswered Othon Oliveira 1 -
-4
votes6
answers40933
viewsA: Does ternary surgery exist in Python?
The function uses a ternary operator to calculate the MDC of two numbers def mdc(a,b): return b if (a == 0) else mdc(b % a, a)