×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Assignment of South Point School List in Python South Point - Class XI - Computer Science. Assignment Number 14a
Assignment 2 of South Point School List in Python - Python Language
2193    Arnab De    19/11/2020

Write a program to input an even number N from the user. Next using a loop simultaneously generate all numbers from (N//2-1) to 1 and (N//2+1) to (N-1). After each pair of values is generated, check if the higher value is twice the lower value. If so, then print those pair of values.
For example, if N=24, pair of values generated will be (11,13), (10,14), (9,15), (8,16), (7,17), (6,18), (5,19), (4,20), (3,21), (2,22), (1,23) and for the pair (8,16), condition 2nd number is twice the 1st number is valid. Hence will print (8,16).

School Assignment 2020: South point School

softetechnologies
L=[]
N=int(input("Enter a Even Number"))

for i in range((N//2)-1,0,-1):
    temp=[]
    temp.append(i)
    L.append(temp)
c=0
for j in range((N//2)+1,N):
    L[c].append(j)
    c=c+1

for k in range(0,c):
    if(L[k][0]*2 == L[k][1]):
        print(L[k])

softetechnologies
Assignment of South Point School List in Python South Point - Class XI - Computer Science. Assignment Number 14a
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Albert Einstein
It is the supreme art of the teacher to awaken joy in creative expression and knowledge.
Albert Einstein
929
79.53
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     53858
25/06/2018     44927
01/01/2018     43509
28/06/2017     41078
02/08/2017     40051
01/08/2017     34098
06/07/2017     33929
15/05/2017     33179
11/09/2018     29957
14/07/2017     29639
softetechnologies