Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 36481ca

Browse files
authored
Merge pull request #42 from ajayrandy/master
Verified
2 parents d79669a + 8f6fb19 commit 36481ca

6 files changed

+62
-0
lines changed

set1and2/1_lessthan500.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
sum=0
2+
#initializing step value to 5 so that numbers which are not multiples of 5 are not counted
3+
for i in range(5,500,5):
4+
if(i%5==0) and (i%7!=0):
5+
sum=sum+i
6+
7+
print("sum of numbers less than 500 which are divisible by 5 and not divisible by 7 is "+str(sum))
8+

set1and2/2_room_increase.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
def func1(increase):
2+
length=6
3+
breadth=8
4+
height=10
5+
len1=length+(increase/100)
6+
breadth1=breadth+(increase/100)
7+
height1=height+(increase/100)
8+
newarea=len1*breadth1*height1
9+
print("new area is "+str(newarea))
10+
func1(15)
11+

set1and2/3_list.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
list1=['Ron','Hermione','Harry','Professor','Dobby','List Items 2','The House Elf','Potter','Granger','Lockhart','Weasley']
2+
List_Items_2=['Potter','Fred','Greg','George','Voldemort','Sirius','Dumbledore']
3+
#sorting list1 items
4+
list1_sorted=sorted(list1)
5+
#adding sorted list1 and list 2 items
6+
list3=list1_sorted+List_Items_2
7+
print(list3)

set1and2/4_triplet.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#function to find triplets
2+
def triplet(a, b, c):
3+
return (a**2) + (b**2) == (c**2)
4+
5+
SUM = 1000
6+
#finding products of triplets whose sum is 1000
7+
for i in range(1, SUM):
8+
for j in range(i+1, SUM):
9+
c = SUM - (i + j)
10+
if(triplet(i, j, c)):
11+
if i + j + c == SUM:
12+
print (i * j * c)
13+
break

set1and2/6_print_primes.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
def prime(q):
2+
for a in range(2,q):
3+
k=0
4+
for i in range(2,a//2+1):
5+
if(a%i==0):
6+
k=k+1
7+
if(k<=0):
8+
print(a)
9+
prime(99999)

set1and2/7_palin.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#taking input from the user
2+
n= input("enter something")
3+
#reversing the string using n[::-1]
4+
if n[::-1] == n[0:]:
5+
6+
print(n, " is a palindrome")
7+
8+
else:
9+
10+
print(n, " is not a palindrome")
11+
12+
13+
14+

0 commit comments

Comments
 (0)