Python for Engineers
Solve Problems by Coding Solutions - A Complete solution for python programming
Blog Pages
(Move to ...)
Code
Top 10 Blogs
NumPy Tutorials
Distributions
Self Learning
IDE
Packages
About
▼
Evaluating expression in Python
x=2
y=3
z=2
print x**y**z #Answer 512
print (x**y)**z #Answer 64
print x**(y**z) #Answer 512
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment