Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def potega(x = 128):
- for i in range(x + 1):
- print("2 ^ %i = %i" % (i, 2 ** i))
- def main():
- print("Potęgi liczby 2:\n")
- potega()
- if __name__ == "__main__":
- main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement