Nothing here!!!
Β°β§ π π π ·q°⧠π π π ·q°⧠π π π ·q°⧠π π π ·q°⧠π π π ·q°⧠π π π ·q°⧠π π π ·q°⧠π π π ·q°⧠π π π ·q
Shift + Enter = run model/ training Ai
lambda it seem like function in python but It shorter than def blah blah
Object-Oriented Programming (OOP) is a programming style where code is organized around objects instead of just functions and logic.
init is a special method in Python classes. It runs automatically when a new object is created.
EX : class Person:
def __init__(self, name, age):
self.name = name
self.age = age
Equal ==
Not Equal !=
Greater than >
Less than <
Greater than or Equal >=
Less than or Equal <=
// division but remove decimal
% return remainder
** power of a number
and = True if both conditions are True
or = True if at least one condition is True
not = reverse the result
lower = convert string to lowercase
upper = convert string to uppercase
capitalize = make the first letter to uppercase
title = make first letter of every word to uppercase
strip = remove space from both sides
lstrip = remove space from left side
rstrip = remove space from right side
find = find position of substring
count = count how many times substring appears
replace = replace substring
split = split string into list
join = join list into string
Β°β§ π π π ·q°⧠π π π ·q°⧠π π π ·q°⧠π π π ·q°⧠π π π ·q°⧠π π π ·q°⧠π π π ·q°⧠π π π ·q°⧠π π π ·q
πPythonπ
requests - Python library used to send HTTP requests to websites or APIs.