You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One idea I had (and something I've been wanting to try for a while) is using coconut instead of normal python. Coconut is a kind of "extended" python with some extra features. So all code that runs in python will run in coconut as well, but it also has pipe operators (like %>% in R and dplyr):
4|>maths.sqrt() |>print
is equivalent to:
print(maths.sqrt(4))
Since we're making a pipeline, having a pipe operator could be cool 😃
The text was updated successfully, but these errors were encountered:
One idea I had (and something I've been wanting to try for a while) is using coconut instead of normal python. Coconut is a kind of "extended" python with some extra features. So all code that runs in python will run in coconut as well, but it also has pipe operators (like
%>%
in R and dplyr):is equivalent to:
Since we're making a pipeline, having a pipe operator could be cool 😃
The text was updated successfully, but these errors were encountered: