@adnan Actually python code could be simplified. Unlike other languages making it less difficult to control your code/edit it.
for i in xrange(1,101):
li=[]
if i%3==0:
if i%5==0:
print str(i)+ "FIZZBUZZ"
li.append(i)
else:
print str(i)+ "fizz"
if i%5==0 and i not in li:
print str(i)+ "buzz"
regarding your code, there are some issues; particularly the counting variable in a for loop you don't need to increment the iterator (count=count+1) in fact the for loop does it automatically (by 1 if unspecified); you can specify by doing for(start,stop,incremented value)
notice that the loop wont stop at the "stop" value but at stop-1.
also you could always use the % modulo operator to check if the division is total or not, instead of verifying integers which is a pain in the ass.
Don't underestimate python, it is really awesome.