0% found this document useful (0 votes)
4 views2 pages

Python cheatsheet Module 1

This document is a cheat sheet for Python basics, covering essential topics such as comments, string manipulation, data types, and operators. It includes code examples for various methods like concatenation, indexing, and string functions such as lower(), upper(), and split(). The document serves as a quick reference for fundamental Python programming concepts and syntax.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
4 views2 pages

Python cheatsheet Module 1

This document is a cheat sheet for Python basics, covering essential topics such as comments, string manipulation, data types, and operators. It includes code examples for various methods like concatenation, indexing, and string functions such as lower(), upper(), and split(). The document serves as a quick reference for fundamental Python programming concepts and syntax.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 2

12/10/24, 2:12 PM about:blank

Module 1 Cheat Sheet: Python Basics

Package/Method Description Code Example

Comments are lines of text that are ignored by the Python interpreter when # This is a comment
Comments
executing the code<./td>

Syntax:
concatenated_string = string1 + string2
Concatenation Combines (concatenates) strings.
Example:
result = "Hello" + " John"</td>

Example:
x=7
# Integer Value
y=12.4
# Float Value
Data Types - Integer - Float - Boolean - String is_valid = True
# Boolean Value
is_valid = False
# Boolean Value
F_Name = "John"
# String Value

Example:
Indexing Accesses character at a specific index. my_string="Hello"
char = my_string[0]

Syntax:
len(string_name)

len() Returns the length of a string. Example:


my_string="Hello"
length = len(my_string)

Example:
lower() Converts string to lowercase. my_string="Hello"
uppercase_text = my_string.lower()

Example:
print() Prints the message or variable inside `()`. print("Hello, world")
print(a+b)

Example:
- Addition (+): Adds two values together.
- Subtraction (-): Subtracts one value from another. x = 9 y = 4
- Multiplication (*): Multiplies two values. result_add= x + y # Addition
Python Operators - Division (/): Divides one value by another, returns a float. result_sub= x - y # Subtraction
result_mul= x * y # Multiplication
- Floor Division (//): Divides one value by another, returns the quotient as an result_div= x / y # Division
integer. result_fdiv= x // y # Floor Division
- Modulo (%): Returns the remainder after division. result_mod= x % y # Modulo</td>

Example:
replace() Replaces substrings. my_string="Hello"
new_text = my_string.replace("Hello", "Hi")

Syntax:
substring = string_name[start:end]
Slicing Extracts a portion of the string.
Example:

my_string="Hello" substring = my_string[0:5]

Example:
split() Splits string into a list based on a delimiter. my_string="Hello"
split_text = my_string.split(",")

strip() Removes leading/trailing whitespace. Example:


my_string="Hello"

about:blank 1/2
12/10/24, 2:12 PM about:blank
trimmed = my_string.strip()

Example:
upper() Converts string to uppercase. my_string="Hello"
uppercase_text = my_string.upper()

Syntax:
variable_name = value
Variable
Assigns a value to a variable. Example:
Assignment
name="John" # assigning John to variable name
x = 5 # assigning 5 to variable x

© IBM Corporation. All rights reserved.

about:blank 2/2

You might also like