All examples (1418)

Make an SMS bomber with Python - learn how to create your own with an example code.
"Learn how to reverse a string in Python with a simple example. Understand how to write code to reverse a string in Python and use it in your code!"
Learn how to do integer division in Python with an example. See how to use the // operator to get a whole number result.
"Learn how to use Python to store data with an example of a simple program to save user information."
Learn how to make your Python program repeat itself with an example. Understand the basics of while loops & use them to create efficient programs.
Learn how to make a local variable global in Python with a step-by-step example.
Create nested dictionary in Python with an example: store employee info, names, ages, and job titles.
Make a matrix out of a list in Python w/ an example: Use list comprehension to quickly create 2D array from a given list.
Learn how to create an infinite while loop in Python with an example! See how to use the "while True" statement and other techniques to loop forever.
Learn how to turn a tuple into a string in Python using an example.
Learn how to create a classic "Guess the Number" game in Python, with an example game and step-by-step instructions.
Learn how to scrape a website using Python with a step-by-step example. Understand the fundamentals of web scraping & gain knowledge to build your own web scraping tool.
Learn how to make a countdown timer in Python with this step-by-step guide and example code.
Build a powerful back-end using Python! Learn how to create a web server using Flask, a micro web framework, and an example code.
Make a Python loader with an example: discover how to create, customize, and use a loader for efficient data loading in Python.
Create Python subclass: learn how to subclass & use inheritance to customize your code w/ an example.
Create an automated clicker in Python with an example code to help speed up tasks.
Create a reverse list in Python using slicing & negative indices - e.g. my_list[::-1] to reverse a given list.
Learn how to make a copy of a Python array, with example code showing how to use slicing and the copy module.
Write Python tests w/ examples: learn how to use the unittest & pytest frameworks to write tests for your code & debug faster.