About 50 results
Open links in new tab
  1. Learn Python Programming - Python Tutorial

    In this course you will learn how to write code, the basics and see examples. Python is a programming language supports several programming paradigms including Object-Orientated …

  2. Python Exercises - Python Tutorial

    These exercises will help you with Python training. Python for dummies? No, challenging exercises to become a good developer! You can download the answers here. Related course: …

  3. Getting started - Python Tutorial

    Python is a programming language with a clean syntax that is easy to learn. Python programs can be run under all desktop computers. It used in many application domains including: Web and …

  4. Make a program that asks the users preferred programming language. lang = input("Python or Ruby?: ") print("You chose : " + lang) If statements Exercise 1 x = input("Number: ") if x < 0 or …

  5. Tkinter (GUI Programming) - Python Tutorial

    Tkinter is a graphical user interface (GUI) module for Python, you can make desktop apps with Python. You can make windows, buttons, show text and images amongst other things. Tk and …

  6. Functions in Python (With Examples) - Python Tutorial

    Functions in Python (With Examples) To group sets of code you can use functions. Functions are small parts of repeatable code. A function accepts parameters. Without functions we only have …

  7. Try and Except in Python - Python Tutorial

    Python won’t tell you about errors like syntax errors (grammar faults), instead it will abruptly stop. An abrupt exit is bad for both the end user and developer. Instead of an emergency halt, you …

  8. PyQt GUI Programming Tutorial - Python Tutorial

    PyQt is a module to make desktop software with Python. This works on all desktop systems including Mac OS X, Windows and Linux. If you want to make desktop apps with Python, PyQt …

  9. Why Python is Awesome - Python Tutorial

    Created by Guido van Rossum and released in 1991, Python is now an advanced, general-purpose programming language. It is designed to stress on code readability by utilizing …

  10. If Statements Explained - Python Tutorial

    In Python the if statement is used for conditional execution or branching. An if statement is one of the control structures. (A control structure controls the flow of the program.)

Refresh