💡 Coding Tips by Anjali

1️⃣ What is a Variable?

A variable is like a container that holds data. In Python, you don’t need to define its type explicitly.

2️⃣ What is Git?

Git is a version control system used to track changes in code and collaborate with others.

3️⃣ HTML Tags

HTML uses tags like <h1>, <p>, <a> to define headings, paragraphs, and links.

4️⃣ Python Tip

Use f-strings for easy formatting: name = "Anjali"; print(f"Hello {name}")

5️⃣ Git Tip

Use git status to check which files have changed before committing.

6️⃣ SQL Tip

Use SELECT * FROM tablename WHERE condition; to filter data in SQL queries.