Concept Flow - info() for column types and nulls
Create DataFrame
Call df.info()
Scan each column
Count non-null values
Identify data types
Print summary table
Show memory usage
The flow shows how calling info() scans each DataFrame column to count non-null values, identify data types, and then prints a summary with memory usage.