Search posts, tags, users, and pages
Paul Apivat
Documenting and sharing everything I learn about Data Science, Machine Learning, R, Python, SQL and more.
Control Flow I believe the main take away from this section is to briefly highlight the various control flows possible. Here's a traditional if-else statement: x = 5 if x % 2 == 0: parity = "even" else: parity = "odd" parity # 'odd' The au...
No responses yet.