Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
347 rajveer 1
values = []
2
expBullets = expFeature.getExpandedBullets()
3
 
4
if expBullets is not None:
5
    for expBullet in expBullets:
6
        memory = float(expBullet.getValue())
7
 
8
print "Memory is" + `memory`
9
 
10
if memory < 512 :
11
    strRate = "Upto 512 MB"    
12
elif memory < 2048 :
13
    strRate = "512 MB - 2 GB"
14
elif memory < 8192 :
15
    strRate = "2 GB - 8 GB"
16
else :
17
    strRate = "Above 8 GB"
18
 
19
values = []
20
values.append(strRate)