Ex Course

Python is a popular open source programming language used for both standalone programs and scripting applications in a wide variety of domains. It is free, portable, powerful, and is both relatively easy and remarkably fun to use.
Python supports procedure-oriented programming as well as object-oriented programming.

Python Programming E-books

  1. A Byte of Python (2013 - PDF Source Code - 666 KB)
    • - This book serves as a guide or tutorial to the Python programming language. It is mainly targeted at newbies. It is useful for experienced programmers as well. It is written for the Python 3 .
  2. Programming in Python (2013 - PDF - 8.7 MB)
    • - Contains short tutorials, examples and exercises to initiate in the Python programming language: Statement Types, Using and Writing Functions, Object-Oriented Programming, Graphical Programming.
  3. Learning Python, 5th Edition (2013 - PDF Source Code - 15 MB)
    • - Provides a comprehensive and in-depth introduction to the Python language. It is designed to serve as a single, all-inclusive learning resource for all Python newcomers.
      Complete with quizzes, exercises, and helpful illustrations, this tutorial gets you started with both Python 2.7 and 3.3—. You’ll also learn some advanced language features that recently have become more common in Python code.
  4. Python Cookbook, 3rd Edition (2013 - PDF Source Code - 10.3 MB)
    • - This book is aimed at Python programmers who already know the basics and are looking to deepen their understanding of the language and modern programming idioms. Much of the material focuses on some of the more advanced techniques used by libraries, frameworks, and applications.

Video courses and tutorials

  1. Learning Python Programming (LPP 1 - LPP 2 - LPP 3 - LPP 4)
    • - In this Python training course (93 lessons) you will learn how to program with Python language. This tutorial is designed for beginners, and you do not need to have any experience with programming or development in order to learn how to program with Python using this video tutorial. Working files are included to allow you to use the same source material that the author does in this training course.
  2. Web Programming With Python (WPP 1 - WPP 2 - WPP 3)
    • - This video course is presented via an intuitive, easy-to-use interface, allowing you to learn at your own pace.
      These Web Programming With Python Tutorials break even the most complex subjects down into easy to follow segments. Practical working files are included

Python 3.4, Documentation and Tutorials

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which HTML5 tag can be used to embed an external application (SWF, PDF) in web page?
<mark> <embed> <canvas>
<embed src="flash_game.swf" width="450" height="350" />
Which CSS pseudo-element adds a special style to the first line of a text?
:first-letter :before :first-line
#id:first-line {
  font-weight: bold;
  color: blue;
}
Click on the window object property which gets or sets the URL of current page.
window.location window.self window.status
var url = window.location;
alert(url);
Indicate the PHP function used to get the contents of a file or page and store it into a string.
fopen() file_put_contents() file_get_contents()
$homepage = file_get_contents("http://coursesweb.net/");
echo $homepage;
Python Programming

Last accessed pages

  1. Moving html element to a random direction (5239)
  2. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (143119)
  3. PHP MySQL - WHERE and LIKE (29530)
  4. CSS Outline (2683)
  5. PHP Error Handling and Debugging (4457)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (352)
  2. CSS cursor property - Custom Cursors (41)
  3. The Mastery of Love (39)
  4. PHP-MySQL free course, online tutorials PHP MySQL code (34)
  5. Read Excel file data in PHP - PhpExcelReader (31)