123 results

Course: What Can You Do With Python?

Mar 25, 2025 basicscareer

In this video course, you'll find a set of guidelines that will help you start applying your Python skills to solve real-world problems. By the end, you'll be able to answer the question, "What can you do with Python?"


Course: Concatenating Strings in Python Efficiently

Feb 18, 2025 basicsbest-practicespython

In this video course, you'll learn how to concatenate strings in Python. You'll use different tools and techniques for string concatenation, including the concatenation operators and the .join() method. You'll also explore other tools that can also be handy for string concatenation in Python.


Course: Ways to Start Interacting With Python

Jan 07, 2025 basicspython

In this video course, you'll explore the various ways of interacting with Python. You'll learn about the REPL for quick testing and running scripts, as well as how to work with different IDEs, and Python's IDLE.


Course: Formatting Floats Inside Python F-Strings

Nov 12, 2024 basicspython

In this video course, you'll learn how to use Python format specifiers within an f-string to allow you to neatly format a float to your required precision.


Course: Customizing VS Code Through Color Themes

Sep 17, 2024 basicsgui

A well-designed coding environment enhances your focus and productivity and makes coding sessions more enjoyable. In this Code Conversation, your instructor Philipp Acsany will guide you step-by-step through the process of finding, installing, and adjusting color themes in VS Code.


Course: Customize VS Code Settings

Jul 09, 2024 basicspython

In this course, Philipp helps you customize your Visual Studio Code settings to switch from a basic cluttered look to a clean presentable look. This is not just pleasant on the eyes, but also gives you a nice user interface if you want to share on a zoom call or screen recording.


Course: Building a Python GUI Application With Tkinter

May 21, 2024 basicsgui

In this video course, you'll learn the basics of GUI programming with Tkinter, the de facto Python GUI framework. Master GUI programming concepts such as widgets, geometry managers, and event handlers. Then, put it all together by building two applications: a temperature converter and a text editor.


Course: HTML and CSS Foundations for Python Developers

May 14, 2024 basicsdjangoflaskfront-endweb-dev

There's no way around HTML and CSS when you want to build web apps. Even if you're not aiming to become a web developer, knowing the basics of HTML and CSS will help you understand the Web better. In this video course, you'll get an introduction to HTML and CSS for Python programmers.


Course: Python Basics Exercises: Scopes

Apr 23, 2024 basicspython

In this Python Basics Exercises course, you'll practice working with scope in Python. You'll reinforce important coding concepts by working with variables inside and outside of functions and loops. You'll also get to practice the LEGB rule.


Course: Finding Python Easter Eggs

Mar 26, 2024 basics

Python has its fair share of hidden surprises, commonly known as Easter eggs. From clever jokes to secret messages, these little mysteries are often meant to be discovered by curious geeks like you!


Course: Python Basics Exercises: Dictionaries

Mar 12, 2024 basicspython

One of the most useful data structures in Python is the dictionary. In this video course, you’ll practice working with Python dictionaries, see how dictionaries differ from lists and tuples, and define and use dictionaries in your own code.


Course: Python Basics Exercises: Installing Packages With pip

Feb 27, 2024 basicspython

In this Python Basics Exercises video course, you'll practice installing packages with pip. You'll also practice creating virtual environments, making lists of requirements, and recreating a development environment.


Course: Python Basics Exercises: Lists and Tuples

Feb 06, 2024 basicspython

In this Python Basics Exercises video course, you'll practice defining and manipulating Python lists and tuples in your code. By reinforcing your skills, you'll gain confidence in using lists and tuples in your programming projects.


Course: Python Basics: Lists and Tuples

Jan 23, 2024 basicspython

In this video course, you'll learn about Python lists and tuples, including how to define and manipulate them in your code. By the end of the course, you'll be ready to effectively use lists and tuples in your programming projects.


Course: Python Basics Exercises: Functions and Loops

Jan 09, 2024 basicspython

In this Python Basics Exercises course, you'll practice creating user-defined functions that you can execute multiple times in your code. Additionally, you'll gain experience in repeating code using for and while loops.


Course: Python Basics Exercises: Reading and Writing Files

Dec 19, 2023 basicspython

In this video tutorial, you'll practice transferring data between your Python programs and external software by reading and writing files. Through exercises, you'll master the art of reading and writing information saved in CSV file format, which is extensively used for exchanging tabular data.


Course: Python Basics Exercises: Strings and String Methods

Dec 12, 2023 basicspython

In this Python Basics Exercises course, you'll review how to work with the string data type. You'll practice manipulating strings with methods and formatting them for printing.


Course: Advent of Code: Solving Puzzles With Python

Nov 28, 2023 basicscareertesting

Advent of Code is an online advent calendar that shares new programming puzzles each day from December 1 to the 25. In this Code Conversation, you'll learn why solving programming puzzles can be beneficial and how you can get started with Advent of Code using Python.


Course: Python Basics Exercises: Modules and Packages

Nov 21, 2023 basicspython

In this video course, you'll practice separating your code into modules, using the import statement to access another module's namespace, and creating Python packages.


Course: Python Basics: Modules and Packages

Nov 14, 2023 basicspython

In this Python Basics video course, you'll learn how to build an application by putting related code into separate files called modules. You'll also use the import statement to use modules in another file.