Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Build Applications using Python IDLE and Python Shell
Rating: 4.7 out of 5(4 ratings)
631 students

Build Applications using Python IDLE and Python Shell

Create Practical and Useful Applications using Python IDLE
Last updated 3/2026
English

What you'll learn

  • Setup Python Development Environment
  • Create applications with Python Idle
  • Create a countdown timer
  • Create a digital clock
  • Create a weight converter app
  • Create a calculator

Course content

6 sections19 lectures1h 59m total length
  • Overview of building applications using Python IDLE and Python Shell1:48
  • Introduction0:20
  • Install Python on Windows3:38
  • Install Python on Macs5:28
  • Install Python on Linux6:40
  • What is Python IDLE0:33

Requirements

  • Basic knowledge of Python advised

Description

Python IDLE comes included in Python installations on Windows and Mac. If you’re a Linux user, then you should be able to find and download Python IDLE using your package manager. Once you’ve installed it, you can then use Python IDLE as an interactive interpreter or as a file editor.

IDLE is Python’s Integrated Development and Learning Environment.

The Python shell is an excellent place to experiment with small code snippets. You can access it through the terminal or command line app on your machine. You can simplify your workflow with Python IDLE, which will immediately start a Python shell when you open it.


IDLE has the following features:


  • cross-platform: works mostly the same on Windows, Unix, and macOS


  • Python shell window (interactive interpreter) with colorizing of code input, output, and error messages


  • multi-window text editor with multiple undo, Python colorizing, smart indent, call tips, auto completion, and other features


  • search within any window, replace within editor windows, and search through multiple files (grep)


  • debugger with persistent breakpoints, stepping, and viewing of global and local namespaces


  • configuration, browsers, and other dialogs.


IDLE has two main window types:

  • The Shell window

  • The Editor window.

It is possible to have multiple editor windows simultaneously. On Windows and Linux, each has its own top menu. Each menu documented below indicates which window type it is associated with.


The idle can be used to create various types of applications.



Who this course is for:

  • Beginner programmers
  • Beginner developers