Python is a versatile and easy-to-learn programming language widely used for various applications, from web development to data analysis. It is known for its clean and simple syntax, which makes it beginner-friendly and powerful at the same time. With Python, you can work with different data types, perform mathematical operations, handle files, and even create complex applications. Whether you're writing a small script to automate a task or developing large-scale software, Python has tools and libraries that make coding easier and more efficient. In this section, we will dive into the basic concepts of Python, including its data types, variables, operators, functions, and control structures. We'll also explore how to handle inputs and comments, and how to use modules to extend Python's functionality.
age = 25 # Here, age is a variable that stores the value 25
float()
function.
num_int = 5
num_float = float(num_int)
print(num_float) # Output: 5.0
int()
function. This conversion will remove the decimal part.
num_float = 5.7
num_int = int(num_float)
print(num_int) # Output: 5
int()
function.
num_str = "10"
num_int = int(num_str)
print(num_int) # Output: 10
float()
function.
num_str = "10.5"
num_float = float(num_str)
print(num_float) # Output: 10.5
str()
function.
num_int = 100
num_str = str(num_int)
print(num_str) # Output: "100"
ValueError
.
num_str = "abc"
num_int = int(num_str) # This will raise a ValueError.
sys.argv
list from the sys
module is used to access
command line arguments.sys.argv
is always the name of the script, and the
subsequent elements are the arguments passed to the script.
import sys
# Print the script name
print("Script Name:", sys.argv[0])
# Print command line arguments passed to the script
for arg in sys.argv[1:]:
print("Argument:", arg)
example.py
.
python example.py arg1 arg2 arg3
Script Name: example.py
Argument: arg1
Argument: arg2
Argument: arg3
sys.argv
will only contain the script name. So always make
sure to handle cases where no arguments are provided to avoid errors.
input()
to gather user input:
input()
function allows you to gather data from the user via the console.
input()
:
# Gathering user's name
name = input("Enter your name: ")
print("Hello, " + name + "!")
The above code will ask the user to enter their name, and then it will greet them with their name in the output.
print()
to display output:
print()
function is used to display information to the user or output
results to the console.print()
:
# Displaying a message
print("Welcome to Python!")
# Displaying multiple items
age = 25
print("Age:", age)
The above code will print out the string "Welcome to Python!" and the age message "Age: 25".
#
):
#
symbol. Everything after
the #
on that line is considered a comment and is ignored by Python during
execution.
# This is a single-line comment
The above code won't affect the program and is used to add notes or explanations in the code.
'''
or """
.
'''
This is a multi-line comment.
It spans several lines.
It can be used for longer explanations or to disable code.
'''
The code inside the triple quotes will be ignored, making it easy to write multi-line comments.
import
statement to include external modules:
import
statement allows you to include external Python modules or libraries
into your program, which lets you access their functionality.import
:
# Importing the math module
import math
# Using a function from the math module
result = math.sqrt(16)
print(result) # Output: 4.0
The above code imports the math
module and uses its sqrt()
function to
calculate the square root of 16.
math
, random
,
datetime
) that you can use without installing anything extra..py
extension) and importing it into other scripts.
# Assuming you have a file named mymodule.py with a function greet()
# Importing the custom module
import mymodule
# Using a function from the custom module
mymodule.greet("John")
This example shows how you can import a custom module (like mymodule.py
) and use its
functions in your script.
if
, elif
, else
):
if
,
elif
(else if), and else
.if
statement checks a condition, and if it evaluates to True
,
the associated block of code is executed. If the condition is False
, the
elif
or else
block can be executed (if provided).
age = 20
if age >= 18:
print("You are an adult.")
elif age >= 13:
print("You are a teenager.")
else:
print("You are a child.")
The code checks the value of age
and prints the appropriate message based on whether
the condition is True
or False
.
for
, while
):
for
loop is used
to iterate over a sequence (like a list, tuple, or range), while the while
loop
continues as long as a specified condition remains True
.for
loop:
for i in range(5):
print(i) # Output: 0, 1, 2, 3, 4
This loop prints the numbers 0 through 4 using the range()
function.
while
loop:
count = 0
while count < 5:
print(count)
count += 1 # Output: 0, 1, 2, 3, 4
This loop prints numbers from 0 to 4, incrementing count
after each iteration.
break
, continue
, pass
statements:
break
is used to exit a loop prematurely, continue
skips the rest
of the current iteration and moves to the next iteration, and pass
is a
placeholder that does nothing but allows the program to continue.break
:
for i in range(10):
if i == 5:
break # Loop will stop when i equals 5
print(i) # Output: 0, 1, 2, 3, 4
continue
:
for i in range(5):
if i == 3:
continue # Skips printing 3
print(i) # Output: 0, 1, 2, 4
pass
:
for i in range(3):
if i == 2:
pass # Does nothing for i == 2
print(i) # Output: 0, 1, 2
print()
, len()
, type()
,
etc.
print()
function:
print("Hello, World!") # Output: Hello, World!
The print()
function is used to display the specified message or data to the
console.
len()
function:
word = "Python"
print(len(word)) # Output: 6
The len()
function returns the number of items (characters, elements, etc.) in an
object like a string, list, or tuple.
type()
function:
number = 10
print(type(number)) # Output: <class 'int'>
The type()
function is used to check the type of an object. In this case, it returns
that the type of number
is int
(integer).
count()
function:
my_list = [1, 2, 2, 3, 4, 2, 5]
count_2 = my_list.count(2)
print(count_2) # Output: 3
The count()
function is used to count the number of occurrences of a specific element in a list. In this case, it returns 3
because the number 2
appears three times in my_list
.
enumerate()
function:
fruits = ['apple', 'banana', 'cherry']
for index, fruit in enumerate(fruits):
print(index, fruit)
# Output:
# 0 apple
# 1 banana
# 2 cherry
The enumerate()
function adds an index to each item in an iterable, returning both the index and the value. In this case, it assigns an index to each fruit in the fruits
list.
In Python, a module is a file that contains Python code. It can define functions, classes, and variables that you can reuse in other programs.
To create a module, simply write your Python code in a separate file (with a .py
extension). For example:
# mymodule.py
def greet(name):
return f"Hello, {name}!"
Now, you can use this module in another Python file by importing it:
# main.py
import mymodule
print(mymodule.greet("Alice")) # Output: Hello, Alice!
Python comes with many built-in modules that provide additional functionality. You can import these modules and use their features in your program.
For example, you can use the math
module to perform mathematical operations:
import math
print(math.sqrt(16)) # Output: 4.0
Here, we imported the math
module and used its sqrt()
function to
calculate the square root of 16.
In Python, file handling is an essential skill, as it allows you to interact with files on your system. When you're working with files, you can open them, read from them, write to them, and even modify them.
First, let's start with the basics of opening a file. You use the open()
function to
open a file. The open()
function takes two main arguments: the filename and the
mode (what you want to do with the file).
For example, to open a file for reading, use the r
mode:
# Open the file in read mode
file = open("example.txt", "r")
# Read the entire file
content = file.read()
print(content)
file.close() # Always remember to close the file!
This will open the file example.txt
, read its content, and print it to the screen.
If the file does not exist, Python will throw an error.
If you want to read a file line by line, you can use the readline()
method. Here's
how:
# Open the file
file = open("example.txt", "r")
# Read one line at a time
line1 = file.readline()
line2 = file.readline()
print(line1)
print(line2)
file.close()
This will print the first two lines of the file. Each time you call readline()
, it
reads the next line.
Now, let's talk about writing to files. To write to a file, you use the write()
method. But before you can write to a file, you need to open it in write mode using the
w
mode:
# Open the file in write mode (this will overwrite the existing content)
file = open("output.txt", "w")
file.write("Hello, world!")
file.close()
This code will create a new file named output.txt
(if it doesn't already exist) and
write the string "Hello, world!" into it. If the file exists, its content will be replaced with
the new content.
If you want to append data to the end of a file without changing the existing content, you can
use the a
(append) mode:
# Open the file in append mode
file = open("output.txt", "a")
file.write("\nAppended content!")
file.close()
This will add the text "Appended content!" to the end of the file without removing the original content.
When opening a file, you must specify what kind of interaction you want with it. This is where file modes come in. Python provides several modes for opening a file:
For example, if you want to work with binary files, like images, you would open the file in binary mode:
# Open the image file in binary read mode
file = open("image.png", "rb")
data = file.read()
file.close()
Similarly, you can write to a binary file using the wb
mode.
To read and write to a file, you can use r+
or w+
modes. This allows
you to modify a file:
# Open the file for both reading and writing
file = open("example.txt", "r+")
file.write("Updated content!")
file.seek(0) # Move the cursor back to the start
content = file.read()
print(content)
file.close()
Here, after writing new content, we used seek(0)
to move the cursor back to the
beginning of the file and then read the updated content.