Skip to content

Cheat Sheets for CSE Students

Quick references to save time while coding or working on projects.

🖥 Programming

  • Python ```python # Swap two variables a, b = b, a # List comprehension squares = [x*x for x in range(5)]