Posts

Showing posts from May, 2025

Python Study Plan -

  WEEK 1: Python Fundamentals Question Bank Core Concepts & Practice What is the difference between input() and print()? Write a code that takes your name and prints a greeting. Create a program that converts temperature from Celsius to Fahrenheit. Demonstrate usage of all types of operators: arithmetic, logical, comparison, assignment, bitwise. Write a script that swaps two variables without using a third variable. Use type(), id(), isinstance() on different variables. Show string slicing with negative indices. Reverse a string. Write code to count vowels in a sentence using a loop. Use split(), strip(), lower(), upper(), replace(), find(), startswith(), and endswith() on a sample string. Built-in Function Practice Practice with: len(), max(), min(), sum(), sorted(), reversed(), enumerate(), zip(), chr(), ord(), round() WEEK 2: Intermediate + OOP Basics Question Bank Data Structures & File Handling Create a dictionary of students and their marks. Print average marks. Sort ...