Python logo

Python list slicing

Python list slicing Python list slicing refers to a method of extracting part of a list. Slicing is used to select multiple elements from a list and return the selected …

Python logo

Python iter() function

Python iter() function The iter() function is a built-in function used in Python to convert an Iterable object to an iterator. An Iterable object is an object that contains multiple …

AI logo

How do machines learn?

How do machines learn? Last time, we briefly learned about machine learning. I learned that machine learning largely includes supervised learning, reinforcement learning, and unsupervised learning, and among these, the …

This is python logo

Python Conditions

Python Conditions Python conditions, in essence, are the decision-making tools of your code. They allow you to control the flow of your program based on whether certain statements are true …

Python logo

Python Variable

Python Variable In Python, variables are named containers that store data during your program’s execution. They act like placeholders, allowing you to refer to specific values without constantly repeating them. …

Python logo

Python loops

Python loops In Python, you can execute a block of code multiple times using two types of loops. for and while. Today, let’s learn how to use each loop by …

AI logo

What is Machine learning?

What is Machine learning? Before learning about machine learning, let’s first check the definition of artificial intelligence and how it is roughly divided into categories. Artificial Intelligence (AI) is a …

This is Django logo

Django’s design philosophy

Django’s design philosophy A web framework for perfectionists with deadlines Django has the slogan “The Web framework for perfectionists with deadlines” and values the following design philosophy. Here are some …

This is Java logo

What is Java?

What is Java? Java is versatile, object-oriented programming language known for its platform independence, robustness and versatility. Developed by Sun Microsystems(now owned by Oracle), Java allows developers to write code …

This is python logo

What is Python?

What is Python? Python is a high-level, interpreted programming language known for its simplicity and readability. It was created by Guido van Rossum and first released in 1991. Python emphasizes …