Unit-I Introduction and Syntax of Python Program
Unit-I Introduction and Syntax of Python Program
1.Interactive:
Python supports interactive mode, allowing you to write code directly in a shell (like the Python
REPL).
Example:
Hello, World!
2.Object-Oriented:
Python supports object-oriented programming concepts like classes, objects, inheritance, and
polymorphism.
Example:
class Dog:
def __init__(self, name):
self.name = name
def bark(self):
print(f"{self.name} says Woof!")
my_dog = Dog("Rolo")
my_dog.bark() # Output: Rolo says Woof!
3.Interpreted:
Python code is executed line-by-line by the Python interpreter, making it easy to debug and
test.
4.Platform Independent:
Python code can run on multiple platforms (Windows, macOS, Linux) without modification,
thanks to the Python interpreter.
Character set
Literals in Python
v = 'n'
w = "a"
print(v)
print(w)
Output
n
a
Both positive and negative numbers including 0. There should not be any fractional part.
In this example, We assigned integer literals (0b10100, 50, 0o320, 0x12b) into different
variables. Here, ‘a‘ is a binary literal, ‘b’ is a decimal literal, ‘c‘ is an octal literal, and ‘d‘
is a hexadecimal literal. But on using the print function to display a value or to get the
output they were converted into decimal.
Float
These are real numbers having both integer and fractional parts. In this example, 24.8
and 45.0 are floating-point literals because both 24.8 and 45.0 are floating-point
numbers.
# Float Literal
e = 24.8
f = 45.0
print(e, f)
Output
24.8 45.0
Complex
The numerals will be in the form of a + bj, where ‘a’ is the real part and ‘b‘ is the
complex part. Numeric literal [ Complex ]
z = 7 + 5j
# real part is 0 here.
k = 7j
print(z, k)
Output
(7+5j) 7j
List literal
The list contains items of different data types. The values stored in the List are
separated by a comma (,) and enclosed within square brackets([]). We can store
different types of data in a List. Lists are mutable.
number = [1, 2, 3, 4, 5]
name = ['Amit', 'kabir', 'bhaskar', 2]
print(number)
print(name)
Output
[1, 2, 3, 4, 5]
['Amit', 'kabir', 'bhaskar', 2]
Tuple literal
even_number = (2, 4, 6, 8)
odd_number = (1, 3, 5, 7)
print(even_number)
print(odd_number)
Output
(2, 4, 6, 8)
(1, 3, 5, 7)
Dictionary literal
The dictionary stores the data in the key-value pair. It is enclosed by curly braces ‘{}‘
and each pair is separated by the commas(,). We can store different types of data in a
dictionary. Dictionaries are mutable.
Output
{'a': 'apple', 'b': 'ball', 'c': 'cat'}
{'name': 'amit', 'age': 20, 'ID': 20}
Set literal
Set is the collection of the unordered data set. It is enclosed by the {} and each element
is separated by the comma(,).
Output
{'e', 'u', 'i', 'o', 'a'}
{'banana', 'cherry', 'apple'}
1. Identifiers
Identifiers are the names used to identify variables, functions, classes, modules, or objects.
2. Keywords
Keywords are reserved words in Python that have a predefined meaning and cannot be used as
identifiers.
Example:
# Using keywords
if True:
print("This is a valid statement") # Output: This is a valid statement
3. Indentation
Incorrect Indentation:
for i in range(3):
print(i) # IndentationError: unexpected indent
4. Variables
Variables store data in memory. They are dynamically typed in Python, meaning you don’t need
to declare the type.
Variable Names
A variable can have a short name (like x and y) or a more descriptive name
(age, carname, total_volume). Rules for Python variables:
Dynamic Typing:
x = 10 # Initially integer
x = "Hello" # Reassigned to a string
print(x) # Output: Hello
Multiple Assignments:
You can get the data type of a variable with the type() function.
Example
x = 5
y = "John"
print(type(x))
print(type(y))
5. Comments
Types of Comments:
Single-line comments:
Use # to write single-line comments.
# This is a single-line comment
print("Hello, World!")
Multi-line comments:
Use triple quotes (''' or """) for multi-line comments.
'''
This is a multi-line comment.
It can span multiple lines.
'''
print("Python supports multi-line comments.")
1.3 Python Environment Setup
1. Installation:
# Script: welcome.py
print("Welcome to Python programming!")
1. Numbers
Example:
# Integer
x = 42
print(type(x)) # Output: <class 'int'>
# Float
y = 3.14
print(type(y)) # Output: <class 'float'>
# Complex
z = 1 + 2j
print(type(z)) # Output: <class 'complex'>
2. Strings
Strings are sequences of characters, enclosed in single ('), double (") quotes, or triple quotes
(''').
String Operations:
name = "Tanisha"
print(len(name)) # Length of string: 7
print(name.upper()) # Uppercase: TANISHA
print(name.lower()) # Lowercase: tanisha
print(name[0:3]) # Slicing: Tan
print(name[::-1]) # Reverse: ahsinaT
3. Tuples
Creating Tuples:
# Tuple declaration
colors = ("red", "blue", "green")
4. Lists
Creating Lists:
# List declaration
fruits = ["apple", "banana", "cherry"]
# Modifying a list
fruits[1] = "mango"
print(fruits) # Output: ['apple', 'mango', 'cherry']
# Adding elements
fruits.append("grape")
print(fruits) # Output: ['apple', 'mango', 'cherry', 'grape']
# Removing elements
fruits.remove("mango")
print(fruits) # Output: ['apple', 'cherry', 'grape']
5. Dictionary
Dictionaries store data as key-value pairs. Keys are unique, and values can be any data type.
Creating a Dictionary:
# Dictionary declaration
student = {"name": "Tanisha", "age": 25, "subject": "CS"}
# Accessing values
print(student["name"]) # Output: Tanisha
# Modifying a value
student["age"] = 26
print(student)
Dictionary Methods:
print(student.keys()) # Output: dict_keys(['name', 'age', 'college'])
print(student.values()) # Output: dict_values(['Tanisha', 26, 'Engineering College'])
print(student.items()) # Output: dict_items([('name', 'Tanisha'), ('age', 26), ('college',
'Engineering College')])