Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

values = []
expBullets = expFeature.getExpandedBullets()

if expBullets is not None:
    for expBullet in expBullets:
        memory = float(expBullet.getValue())

print "Memory is" + `memory`

if memory < 512 :
    strRate = "Upto 512 MB"    
elif memory < 2048 :
    strRate = "512 MB - 2 GB"
elif memory < 8192 :
    strRate = "2 GB - 8 GB"
else :
    strRate = "Above 8 GB"
    
values = []
values.append(strRate)