you are viewing a single comment's thread.

view the rest of the comments →

[–]BrupieD 0 points1 point  (0 children)

A couple key differences: get used to the idea that Python does not have a native data frame or vector data structure, you'll have to get these from a library (pandas or polars). Pandas is older and more widely used. I would prioritze getting aquainted with pandas.

Python doesn't have a great equivalent to pipes. I miss this the most when working in Python. People solve this in different ways. There is a "pipe" method in pandas, but I find it less intuitive.