Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,039 questions

52,004 answers

573 users

How to check whether the number has only first and last bits set in Python

1 Answer

0 votes
def is_only_first_and_last_bit_set(n): 
    return (((n - 1) & (n - 2)) == 0) 
  
  
n = 129
 
print(bin(n))
print(bin(n - 1))
print(bin(n - 2))
print(bin((n - 1) & (n - 2)))

if is_only_first_and_last_bit_set(n): 
    print("Yes") 
else: 
    print("No") 
 
 
 
'''
run:
 
0b10000001
0b10000000
0b1111111
0b0
Yes

'''

 



answered Mar 9, 2019 by avibootz
...