Python Programming PRACTICAL NO.17 ANSWERS
Python Programming PRACTICAL NO.17 ANSWERS
ir
eS
ad
oh
M
IX Conclusion:
Ans
ir
Ans.
Here's a simple Python program to display the calendar of a given month using the
eS
calendar module:
import calendar
Example Output:
Enter year: 2024
M
Ans.
Here's a Python program to calculate the area of a circle using the math module:
ir
import math
eS
# Take radius input from the user
Example Output:
import random
print random.randint(0, 5)
print random.random()
ir
List = [1, 4, True, 800, "Python", 27, "hello"]
eS
print random.choice(List)
Ans.
0.72648124098
ad
52.4871928345
Python
oh
import datetime
M
import time
print time.time()
print date.fromtimestamp(454554)
Ans.
1709238473.6521988 # (Example output - This value will change as it's the
current epoch time)
ir
eS
ad
oh
M