Skip to content

Instantly share code, notes, and snippets.

@phoenixperry
Created January 3, 2016 18:28
Show Gist options
  • Save phoenixperry/9ebc524ca097ae118b0e to your computer and use it in GitHub Desktop.
Save phoenixperry/9ebc524ca097ae118b0e to your computer and use it in GitHub Desktop.
def powersOfTwo(x):
#first check to see if x is a power of two
# proceed to raise it
if x >=512
break
else
#some logic
print x
x = input ("Enter a power of Two")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment