<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Language-Fundamentals on Jesus Oseguera</title><link>https://r0tbyt3.dev/tags/language-fundamentals/</link><description>Recent content in Language-Fundamentals on Jesus Oseguera</description><generator>Hugo</generator><language>en-us</language><atom:link href="https://r0tbyt3.dev/tags/language-fundamentals/index.xml" rel="self" type="application/rss+xml"/><item><title>Advanced functions</title><link>https://r0tbyt3.dev/wiki/content/backend-engineering/python/language-fundamentals/advanced-functions/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://r0tbyt3.dev/wiki/content/backend-engineering/python/language-fundamentals/advanced-functions/</guid><description>Advanced functions Advanced Functions - higher-order functions, decorators, generators, and closures in Python.
Higher-order Functions Higher-order functions - functions that can take other functions as arguments or return them as results.
Examples:
def apply_function(func, value): return func(value) def square(x): return x ** 2 result = apply_function(square, 5) # calls square(5) inside apply_function print(result) # Output: 25 Decorators Decorators - functions that modify the behavior of other functions or methods.
Examples:</description></item><item><title>Basic data types</title><link>https://r0tbyt3.dev/wiki/content/backend-engineering/python/language-fundamentals/basic-data-types/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://r0tbyt3.dev/wiki/content/backend-engineering/python/language-fundamentals/basic-data-types/</guid><description>Basic data types Basic Data Types - fundamental Python data types and their usage in programs.
Integers Integers - used for representing whole numbers without a fractional part.
Examples:
Floats Floats - used for representing decimal numbers.
Examples:
Strings Examples:
Lists Examples:
Dictionaries Examples:
Tuples Examples:
Sets Examples:
Booleans Booleans - used for representing truth values (True/False aka 1/0) during conditional operations.
Examples:
x = True y = False Note: True/False can be substitued with values 1/0 respectively due to how Python handles boolean values</description></item><item><title>Basic keywords</title><link>https://r0tbyt3.dev/wiki/content/backend-engineering/python/language-fundamentals/basic-keywords/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://r0tbyt3.dev/wiki/content/backend-engineering/python/language-fundamentals/basic-keywords/</guid><description>Basic keywords Basic Keywords - reserved words in Python and their usage in programs.
Related Links: Advanced functions Basic operators Basic data types</description></item><item><title>Basic operators</title><link>https://r0tbyt3.dev/wiki/content/backend-engineering/python/language-fundamentals/basic-operators/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://r0tbyt3.dev/wiki/content/backend-engineering/python/language-fundamentals/basic-operators/</guid><description>Basic operators Basic Operators - arithmetic, comparison, logical, and assignment operators in Python.
Arithemtic Operators Arithmeatic Operators - used for performing mathematical operations on numbers.
Examples:
1 + 2 # Addition 3 - 4 # Subtraction 5 * 6 # Multiplication 7 / 8 # Division 9 % 2 # Modulus 10 ** 3 # Exponentiation 11 // 4 # Floor Division Operator Precedence Operator precedence - the order in which operations are evaluated in an expression.</description></item><item><title>Language Fundamentals</title><link>https://r0tbyt3.dev/wiki/content/backend-engineering/python/language-fundamentals/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://r0tbyt3.dev/wiki/content/backend-engineering/python/language-fundamentals/</guid><description>Language Fundamentals Language Fundamentals - core Python syntax, operators, data types, and functional programming constructs.
Advanced functions Basic keywords Basic operators Basic data types Related Links: AI and LLMs Software Engineering</description></item></channel></rss>