#python
Explore materials tagged "python" from expert practitioners. Up-to-date articles and useful tips to help you grow.
Articles with tag "#python"
All materials on the topic python
The while Loop: Repeat While a Condition Holds ๐
The for loop works great when you know how many times to repeat an action. But what if you don't?
Controlling Time and Randomness in Python โฑ๏ธ๐ฒ
Sometimes code runs too fast (all the text dumps on screen in a fraction of a second), or you need...
Math Operations in Python ๐งฎ
Python is a great calculator! Let's cover all the arithmetic operators with examples.
Python f-Strings: Insert Values into Text ๐ช
An f-string lets you build readable text from words, variables, and expressions. It is useful for greetings, game results, program...
Python Data Types: A Complete Guide ๐ฏ
Python can work with different types of data: numbers, text, boolean values. Let's cover all the fundamental types!
Logical Operators in Python: and, or, not
One condition is fine. But what if you need to check multiple conditions at once?
Python Variables and Strings: Regular, f-, and r-Strings ๐ฆ
A variable is a name associated with a value. Variables let you store data, reuse it, and change it without...
Functions in Python
Problem: you wrote a discount calculation โ needed in 10 places, so you copy it 10 times. You find a...
The for Loop: Make Python Work for You ๐
Imagine that you need to display a rocket five times. You could copy print(rocket) five times, but programmers do not...
Python's print() and input() Functions: Output and Input ๐ฌ
The two most essential functions for beginner Python developers! print() displays information on screen, and input() reads data from the...
Dictionaries in Python: Storing Data as Key-Value Pairs ๐
Imagine you're creating a character card for a game. The character has a name, attack, health, and class. How do...
Similar tags
Study related topics
Looking for more on the topic?
Study all our materials or subscribe to updates