Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions Python/Program33/Program33.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# defining a function to calculate HCF
def calculate_hcf(x, y):
# selecting the smaller number
if x > y:
smaller = y
else:
smaller = x
for i in range(1,smaller + 1):
if((x % i == 0) and (y % i == 0)):
hcf = i
return hcf

# taking input from users
num1 = int(input("Enter first number: "))
num2 = int(input("Enter second number: "))
# printing the result for the users
print("The H.C.F. of", num1,"and", num2,"is", calculate_hcf(num1, num2))
1 change: 1 addition & 0 deletions Python/Program33/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Program to find HCF
7 changes: 7 additions & 0 deletions Python/Program34/Program34.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# First import the calendar module
import calendar
# ask of month and year
yy = int(input("Enter year: "))
mm = int(input("Enter month: "))
# display the calendar
print(calendar.month(yy,mm))
1 change: 1 addition & 0 deletions Python/Program34/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Program to display calender