1 / 4

Python Programming Course janakpuri, New Delhi

Python Programming Course janakpuri, New Delhi

gvsbaluja
Télécharger la présentation

Python Programming Course janakpuri, New Delhi

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. An ISO 9001:2000 Certified Institute A-1/17, Opp Metro Pillar No 636 Janakpuri, New Delhi - 58 9015596280, 9313565406, 9212129290 contactgurmeetkaur@gmail.com contactus@balujalabs.com

  2. Introduction of Python Python Introduction The Python Introduction tutorial explains how and where to start writing Python for the server side. First, off Python usually requires some setup by downloading the Python IDLE. The Python IDLE is basically a text editor that lets you execute Python code. If you want to use Python as a server-side language, you certainly can. Python can output HTML just like other languages can, but Python is more commonly used as a module rather than intertwined like some PHP or ColdFusion. As for right now, I recommend you download the IDLE to help you debug your code while we learn the fundamentals offline. One really quick note, we are using python 3.2. Before we go to an example, please understand that Python is space sensitive. This means you must have 4 spaces for each indentation every single time. We'll get into this more later, now let's go to an example. Example print ("My first Python code!") print ("easier than I expected") Result My first Python Code! easier than I expected You can see right off the bat, that we use print() a whole lot. Basically, all it does is output whatever is inside the parentheses. You will be doing lots of printing so, you can get more comfortable with it as we go. Print is a function that we will go into later, but just understand that it can take a value. On the first line, we provide a string value "My first Python code!", which is a string because of the quotes. So, you just told Python to output that string to the console. Python completes that task and moves onto the next line where it prints out a different string. www.balujalabs.in

  3. Content of Python 1. INTRODUCTION TO PYTHON 2. CONTROL STATEMENT 3. PYTHON STRINGS 4. PYTHON LIST 5. PYTHON TUPLE 6. PYTHON DICTIONARY 7. PYTHON FUNCTIONS 8. PYTHON INPUT AND OUTPUT 9. PYTHON MODULE 10. CALENDAR MODULE www.balujalabs.in

  4. A-1/17, Opp Metro Pillar No 636 Janakpuri, New Delhi - 58 9015596280, 9313565406 9212129290 contactgurmeetkaur@gmail.com contactus@balujalabs.com www.balujalabs.in

More Related