
Discover how Python got its name from Monty Python, explore Python's vast libraries, and learn how to use Python for scripting, automation, mathematics, and web development.
Explore how upgrading to Python 3 required library upgrades, with most libraries now available for Python 3, while some remain Python 2 only, addressed by using 2to3.
Write a basic python program by importing libraries, initializing variables, and printing variable values or text using quotes.
Recognize that programming languages share core logic and control structures like loops and conditions. Focus on logic, not syntax; mastering logic lets you learn new languages by understanding their syntax.
Explore how to set up a Python integrated development environment, write a program in a file, run it, and view output in the shell using the Python interpreter.
Learn to write and run your first Python program with a single line printing hello world, save and execute it, and see Python handle mathematical calculations quickly.
Master Python operators, including arithmetic, relational, logical, membership, and identity, and explore data types such as numbers, strings, lists, tuples, and dictionaries.
Explore how Python's for loop and the range function use three parameters—initial value, final value, and step—to control iteration with examples 0 to 4 and 10 to 2.
Learn to implement a Python while loop with a condition, increment the loop variable inside an indented block, and print values until x reaches five.
Define a function using def in Python to create a function definition, specify parameters, and call the function to pass values, execute code, and view the output.
Learn to read user input in Python with input(), store and print it, and see that inputs are strings by default; convert to int() to perform numeric addition.
Getting started with Python, A introductory course on Python focusing on basics and beginning of programming in Python programming language.
Course objective:
The sole objective of this course is to get you introduced with Python programming language. You will learn to make basic programs in Python.
Learning outcomes:
After completing this course and assignments given to you, you will have:
Multiple programs developed in Python.
Proper understanding of Python 2 and Python 3 environment.
Well practiced Loops, functions and user input concepts.