How to Write Python 'Hello World' Program Quickly and Run it
The first Python program looks like the below. I have explained the steps you need to write your first program in Python.
if authorsFirstName == 'Irv':
teachingPython = True
print 'Pay attention to his wisdom'
if authorsFirstName == 'Irv':
teachingPython = True
print 'Pay attention to his wisdom'
You can start your python program quickly. Really useful for learning and to use it in projects.
![]() |
My first program: odbchelper.py
You can write your program as nameccheck.py module.if authorsFirstName == 'Irv':
teachingPython = True
print 'Pay attention to his wisdom'
How to Run Your Python Program
python namecheck.py
Sample python program
teachingPython = True
print 'Pay attention to his wisdom'
The above if condition checks for first name.
In python '==', means equal to. It makes true to teachingPython.
You can start your python program quickly. Really useful for learning and to use it in projects.
Comments
Post a Comment
Thanks for your message. We will get back you.