Language Basics Python

x = 10
count = 0
while x > 0:
    x = x // 2
    count += 1
print "The approximate log2 is", count