.me/python-adv

Python. But Advanced.

disclaimer (lmfao) this is a successive text to https://sarthaksidhant.me/python

so basically a basic guide to python and its function. a detailed basic guide. that was motivation, yeah. dis some real shit.

i’ve created a few gists that look into the basic topics real deeply, and cover their stuff. i would link them after every code sample.

kinda bad jokes and “roasts” so bare with me please. there will be usage of modern instances and 2021 humor, so you must be smart enough to understand this.

Here’s the help desk and contact desk in case of any problems.

my discord: Sarthak Sidhant#4374 my linktree: https://sarthaksidhant.me/Sarthak-Sidhant my discord community for devs, please join if good human being:

https://dsc.gg/decodificate

alternatively, you can visit python’s discord community and ask for help there: invite link (discord only): discord.gg/python

and yes how can we forget stackoverflow and forums (bro click on it)

______________

da basics

so we gon’ sum it up real quick, python, has 6 basic things.

  • Variables
  • Operators
  • Loops
  • Datatypes
  • Connditions
  • Functions

before that, you can either read the glossary, or just nope out of it, i dont really give a shit.

gist update: gist till list complete. 👍 view all my gists here

Glossary (For People Who Are Dumb Enough To Not Know Terms)

  1. int: short for "integer", a whole number with no decimal component (e.g. 1, 42, -7).
  1. float: short for "floating point number", a number with a decimal component (e.g. 3.14, -0.01).
  1. string: a sequence of characters, usually used to represent text (e.g. "hello", "goodbye").
  1. bool: short for "boolean", a type that can represent only two values: True and False.
  1. list: an ordered collection of values, which can be of different types (e.g. [1, 2, 3], ["apple", "banana", "cherry"]).
  1. tuple: similar to a list, but with the difference that its elements cannot be modified after they are created (e.g. (1, 2, 3), ("apple", "banana", "cherry")).
  1. dict: short for "dictionary", an unordered collection of key-value pairs (e.g. {"name": "John", "age": 30}).
  1. set: an unordered collection of unique values (e.g. {1, 2, 3}, {"apple", "banana", "cherry"}).
  1. function: a block of code that can be executed with a single call, often used to perform a specific task (e.g. print, len).
  1. module: a file containing definitions and statements, usually used to organize code into related groups (e.g. math, random).
  1. library: a collection of modules that can be imported and used in your code (e.g. numpy, pandas).
  1. variable: a name used to refer to a value stored in memory.
  1. operator: a symbol that represents a specific operation to be performed on values (e.g. +, -, *)
  1. condition: an expression that evaluates to either True or False, used in if statements to control the flow of execution.

Variables

Variables are used to store data in a computer program. In Python, you don't need to declare a type for a variable; the type will be inferred based on the value you assign to it. Here's an example:

x = 10
y = "Hello, World!"
z = 3.14

here, python is a smart language and is not as dumb as you, it automatically understands that x is an integer, y is a string and z is a float value.

Operators

(remember when u were experimenting with addition and subtraction in grade 1, iz the same thing)

Operators are symbols that perform operations on values. Python supports the following types of operators: (very easy to understand if ur not dumb asf)

Here's an example:

x = 10
y = 20
result = x + y
print(result) #output: 30

click to gist (covers all the 4 types of operators + 1)

Loops

its basically super easy to understand, and you will be able to relate with it. (since your life is an unending loop of disappointment and being unsuccessful)

Loops are used to repeat a block of code multiple times. Python has two types of loops: for loops and while loops

# For loop
for i in range(5):
    print(i)

# Output:
# 0
# 1
# 2
# 3
# 4

click to gist (covers a few functions of the for loop)

the while loop is just similar to it, yeah its just similar to it, trust me its similar to it. they said the while loop is similar to it, apparently its similar to it, ALLEGEDLY, THE WHILE LOOP IS SIMILAR TO IT.


# While loop
i = 0
while i < 5:
    print(i)
    i += 1

# Output:
# 0
# 1
# 2
# 3
# 4

trust me bro, you will understand it if ur not dumb. click to gist (covers while loops examples)

Datatypes

so like its basically the brain or somewhat memory of a language.

and yes you can store values in it. it wont forget it like how you forget ur a burden on earth

i wont talk about it much since im a coder and i cannot socially establish communication even through chats.

# Numeric Types
x = 10
y = 20.5
z = 3 + 4j

# Sequence Types
fruits = ["apple", "banana", "cherry"]

# Mapping Type
person = {
  "name": "John Doe",
  "age": 30,
  "city": "New York"
}

# Set Types
numbers = {1, 2, 3, 4, 5}

# Text Type
message = "Hello, World!"

# Boolean Type
is_true = True

list: click to gist (i made that a while ago pls dont cancel)

Conditional Statements

do you want a coffee? if yes then go and make it. we often use these situations in our lives, these are conditions.

our life is nothing but conditions, we choose on the basis of conditions. (just how i was conditioned about my career option)

Conditional statements are used to execute different blocks of code based on whether a certain condition is met. In Python, the if , elif, else statements are used to implement conditional statements.

x = 10
if x > 0:
    print("x is positive")
elif x < 0:
    print("x is negative")
else:
    print("x is zero")

# Output:
# x is positive

listen guys, if you dont get it, you’re dumb, and nothing can be done about you. respectfully, stop reading this. and get some help.

Functions

so basically, functions are like a whole new python file, in a python file, executed when someone calls it. (just like how you call me handsome 😏)

a function is a reusable block of code that can be executed with a single call. Functions are defined using the def keyword, followed by a function name, arguments in parentheses, and a colon. The code inside the function is indented. Functions can take optional arguments with default values, and they can return values using the return keyword. Functions allow you to group multiple statements into a single unit of code, making it easier to write and maintain large and complex programs.

here’s an example of simple function that takes two inputs, and returns their sum

def add(a, b):
    return a + b

result = add(3, 4)
print(result)  # Output: 7

also here’s an example of code that just greets user, with the greetings provided

def greet(name, greeting="Hello"):
    return f"{greeting}, {name}!"

print(greet("John"))         # Output: Hello, John!
print(greet("Jane", "Hi"))   # Output: Hi, Jane!

In the example above, the function greet has two arguments: name and greeting. The greeting argument has a default value of "Hello", so if it's not provided when the function is called, the default value will be used.

Functions can also be used to group multiple statements into a single reusable unit of code. This makes it easier to write and maintain large and complex programs.

Conclusion

I might be good at stuff, I might be bad. There Might Be Some Mistakes, As Apparently I am a human (i know this because i passed captcha yo) and humans make mistakes (just like yo parents). anyways, it was great meeting you, thanks for baring with my jokes.

Sarthak Sidhant Was Pleased To Meet You And Wishes To Meet You in Future.

💖Thanks For Being Here✨