Advertisement
orborbson

potega2.py

Jul 3rd, 2024 (edited)
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | Source Code | 0 0
  1. def potega(x = 128):
  2.     for i in range(x + 1):
  3.         print("2 ^ %i = %i" % (i, 2 ** i))
  4.  
  5. def main():
  6.     print("PotÄ™gi liczby 2:\n")
  7.     potega()
  8.    
  9. if __name__ == "__main__":
  10.     main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement