Skip to content

Commit 8430c65

Browse files
committed
basic
1 parent ab51103 commit 8430c65

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

basic.py

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,6 @@
88
# c = input('enter thr string: ')
99
# print("The ASCII value of '" + c + "' is", ord(c))
1010

11-
# Python program to print all prime number in an interval calculation
12-
# def prime(x, y):
13-
# prime_list = []
14-
# for i in range(x, y):
15-
# if i == 0 or i == 1:
16-
# continue
17-
# else:
18-
# for j in range(2, int(i / 2) + 1):
19-
# if i % j == 0:
20-
# break
21-
# else:
22-
# prime_list.append(i)
23-
# return prime_list
24-
#
25-
#
26-
# starting_range = int(input('Enter the starting range: '))
27-
# ending_range = int(input('Enter the ending range: '))
28-
# lst = prime(starting_range, ending_range)
29-
# if len(lst) == 0:
30-
# print("There are no prime numbers in this range")
31-
# else:
32-
# print("The prime numbers in this range are: ", lst)
33-
34-
3511
# find the largest number in the list
3612
# a = [3, 8, 1, 7, 9, 5, 4]
3713
# b = 0

0 commit comments

Comments
 (0)