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
▼
Reverse of a number using functions
def intreverse(Number):
Reverse = 0 # Initialize the reverse value to overcome garbage value storage
while(Number > 0):
Reminder = Number %10
Reverse = (Reverse *10) + Reminder
Number = Number//10
return (Reverse)
What is the type of each of the following expressions (within the type function)?
print type(5) <type 'int'>
print type("abc") <type 'str'>
print type(True) <type 'bool'>
print type(5.5) <type 'float'>
print type(12/27) <type 'int'>
print type(2.0/1) <type 'float'>
print type(12 ** 3) <type 'int'>
print type(5 == "5") <type 'bool'>
a = str((-4 + abs(-5) / 2 ** 3) + 321 -((64 / 16) % 4) ** 2)
print a
Ans: 317
‹
›
Home
View web version