
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 Programming (OOP) and functional programming. Related course: Complete Python Programming Course & Exercises. Table of Contents: Overview of articles and exercises ...
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 Internet Development,Scientific apps,Desktop apps, education and general software applications.
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 Tkinter apps can run on most Unix platforms.
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 a long list of instructions. Functions can help you organize code. Functions can also be reused, often they are included in modules.
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: Complete Python Programming Course & Exercises. Python Practice Beginner exercises. Run Python programs. Make a Python program that prints your name.
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 is the module you need to make them.
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 x > 10: print("Invalid number") else: print("Good choice") Exercise 2 password = raw_input("Password: ") if password == "code": print("Correct") else: print ...
Class(es) and Objects in Python - Python Tutorial
Class(es) and Objects in Python. Python class is concept of “object oriented programming”. Python is an object oriented programming language (oop). OOP is a way to build software. With OOP you can make your program much more organized, scalable, reusable and extensible. The OOP concept can be a bit weird.
Python Lists (With Examples) - Python Tutorial
Python Lists (With Examples) List can be seen as a collection: they can hold many variables. List resemble physical lists, they can contain a number of items. A list can have any number of elements. They are similar to arrays in other programming languages.
Python Modules and Packages - An Introduction - Python Tutorial
There are many modules (sometimes called libraries) available for Python. By using these modules you can code much faster. Think of them like building blocks, they contain large sets of functions (sometimes classes) that provide you with additional functionality.