Showing posts with label python example. Show all posts
Showing posts with label python example. Show all posts

Monday, November 30, 2015

Python Control Statements

Break Statement:



break
Example:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#!/usr/bin/python

for letter in 'Python':     # First Example
   if letter == 'h':
      break
   print 'Current Letter :', letter
  
var = 10                    # Second Example
while var > 0:              
   print 'Current variable value :', var
   var = var -1
   if var == 5:
      break

print "Good bye!"
Continue:
continue
Example:
1
2
3
4
5
6
7
str1="hello"
for i in str1: # 'hello'
    if i=='l':
  continue
  print "Hai"
    else:
        print i
Pass:
Syntax:
pass
Example:
1
2
3
4
5
6
7
str1="hello"
for i in str1:
    if i == 'e':
        pass
        print "Whats up"
    else:
        print i

Thursday, November 3, 2011

Python File Operation

Python File Operation:
The below is the script to help to learn about the file read, write operation.
Script will ask operation from the user and do the operation accordingly.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import properties
from properties import filePath
# Program is about read and write operation
# Need to write the file and specify the Name of the file and reading the file.

def writeFile(filename,content):
    f=open(filename,"w")
    f.write(content)
    f.close()

def readfile(filename):
    f=open(filename,"r")
    text=f.read()
    f.close()
    print text


def print_menu():
    print '========================'
    print 'Select any one operation'
    print '1. Write the file'
    print '2. Read the file '
    print '4. exit'
    print
menu_choice = 0
print_menu()
while True:
    menu_choice = input("Type in a number (1-3): ")
    if menu_choice==1:
        print 'Enter the text do you want to write in to the file:'
        filename = raw_input('Enter the name of the file:')
        print 'Next Step ..'
        cont = raw_input('Enter the text')
        writeFile(filePath+filename.rstrip('\n\r '),cont)
    elif menu_choice==2:
        print 'The content of the file is :'
        readfile(filePath+filename.rstrip('\n\r '))
    elif menu_choice==3:
        select = raw_input('You selected to exit yes or no ?')
        try:
            if select.rstrip('\n\r ') == "yes":
                print 'Good bye'
                break
            else:
                print_menu()
        except ValueError:
            print "That was not a Charector ."

Wednesday, November 2, 2011

Python Basic Operation

Python: Arithmetic Operation

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#this program you have to create one file called properties file in that you have to define a and b variable
#need to import those variable in this program by using from <properties file> import <varible>
import properties

from properties import a
from properties import b
sum =  a + b
diff = a-b
div = a/b
product = a*b
print 'Sum of this ',a,'and',b,'value is :',sum
print 'Diffence of this ',a,'and',b,'value is :',diff
print 'Product of this ',a,'and',b,'value is :',product
print 'Division of ',a,'and',b,'value is :',div
Program2: String Operation program :
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#this program you have to create one file called properties file in that you have to define a and b variable
#need to import those variable in this program by using from <properties file> import <varible>

import properties

from properties import str1
from properties import str2

newStr = str1 + str2
newRama = str2*3
firstIndex = str2[0]
last2ndIndex = str2[-1]
newstring3 = str2[1:4]
lengthStr = len(str2)
comp = str1 < str2
find = "e" in str1
strUpper = str2.upper()
strLower = str2.lower()


print 'The concatinated String',str1,'+',str2,'is:',newStr
print 'Multiple of ',str2,'is:',newRama
print 'First index of ',str2,'is :',firstIndex
print 'Last 2nd index of ',str2,'is:',last2ndIndex
print '1st Inddex to 2nd Index of ',str2,'is:',newstring3
print 'Lenth of the string',str2,'is:',lengthStr
if find:
    print 'The \'e\' is prasent in the',str1,'is found'
else :
     print 'The \'e\' is prasent in the',str1,'is not found'

if comp:
    print str1,'is less then',str2
else:
    print str1, 'is not less then',str2
print 'Upper case of ',str2,'is:',strUpper
print 'Lowere case of ',str2,'is :',strLower
program 3: List program
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#this program you have to create one file called properties file in that you have to define a and b variable
#need to import those variable in this program by using from <properties file> import <varible>
import properties
from properties import list1
from properties import list2


print "The existing list is ",list1
print " 2nd list is :",list2

newList = list1+list2

list3=list1*3

print "Concatinated new list is:",newList
print "multiple of list:",list1,"is:",list3

list1[0]= "pattar"
print "The list added pattar ",list1
print "2nd to 3rd element of this array",list1[1:2]