100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.2 TrustPilot
logo-home
Other

Syntax of Python: A Beginner’s Guide with Examples

Rating
-
Sold
-
Pages
6
Uploaded on
24-01-2025
Written in
2024/2025

This document introduces the basic syntax of Python, covering topics like variables, data types, operators, control structures, and indentation rules. Learn how to write Python programs with simple examples. Perfect for first-year Computer Science students.

Show more Read less
Institution
Course









Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
Course

Document information

Uploaded on
January 24, 2025
Number of pages
6
Written in
2024/2025
Type
Other
Person
Unknown

Subjects

Content preview

Basic Syntax of Python

1. Python Variables and Data Types
 Variables in Python are used to store data values. You don’t need to
declare the type of the variable explicitly; Python automatically detects it
based on the value assigned.

Example:

age = 25 # Integer
name = "Alice" # String
height = 5.5 # Float
is_active = True # Boolean

Key Data Types:

o Integer (int): Whole numbers (e.g., 1, 100, -5)
o Floating-Point (float): Decimal numbers (e.g., 3.14, -0.001)
o String (str): A sequence of characters (e.g., "Hello", "Python")
o Boolean (bool): True or False values (e.g., True, False)



2. Python Comments
 Single-Line Comments: Begin with a hash (#) symbol. Python ignores
anything after the # on that line.

Example:

# This is a single-line comment
x = 10 # This is also a comment

 Multi-Line Comments: Use triple quotes (""" or ''') to comment out
multiple lines.

, Example:

"""
This is a multi-line comment.
You can write explanations over several lines.
"""


3. Python Indentation
 Indentation is very important in Python. It defines the block of code for
loops, functions, if-else statements, etc.
o Indentation is done using spaces or tabs (spaces are preferred). Each
block of code within control structures should be indented
consistently.

Example:

if x > 5:
print("x is greater than 5")
else:
print("x is less than or equal to 5")

 Note: Incorrect indentation will result in an error.




4. Python Strings
 Strings in Python are enclosed within single quotes (') or double quotes (").
Both are valid, but it’s common to use double quotes for strings.

Example:

greeting = "Hello, Python!"
name = 'Alice'
$4.89
Get access to the full document:

100% satisfaction guarantee
Immediately available after payment
Both online and in PDF
No strings attached

Get to know the seller
Seller avatar
rileyclover179

Get to know the seller

Seller avatar
rileyclover179 US
Follow You need to be logged in order to follow users or courses
Sold
0
Member since
10 months
Number of followers
0
Documents
252
Last sold
-

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions