Hypernotes 1
Mon 30 June 2025
# Cell 1 — Topic: Recursion
def fact(n): return 1 if n==0 else n*fact(n-1)
print(fact(5))
# Cell 2 — Topic: Recursion
def fact(n): return 1 if n==0 else n*fact(n-1)
print(fact(5))
# Cell 3 — Topic: Pandas
import pandas as pd
df = pd.read_csv('file …Category: basics
Read More
