Assignment of South Point School List in Python - Python Language
1069
Arnab De
16/11/2020
Write a Python program to initialize a list with the following values in the code: L = [6, 8, 23, 45, 27, 4, 19, 34, 24, 5, 20, 10, 32, 15, 18, 21] Next ask the user to input a number N between 1 and 50 (both inclusive). Next, generate a random number R between 1 and N using the randint( ) function. Finally check the list to see if the randomly generated number R is present in the list or not. If it is present, then print the list index where it is present. Otherwise print ‘NNNNNN says the number is not present in the list’, where NNNNNN is YOUR FULL NAME. Give the output of the code for both cases.
School Assignment 2020: South point School
import random
L = [6, 8, 23, 45, 27, 4, 19, 34, 24, 5, 20, 10, 32, 15, 18, 21]
N=int(input("Enter A Number ( between 1 to 50): "))
if(N>=1 and N<=50):
r=random.randint(1,N)
fl=0;
index=0;
for i in L:
if(i==r):
fl=1
break;
index=index+1;
if(fl==1):
print("Generated Random Number ",r ," is found at index no ",index)
else:
print("Arnab says number is not present in the list")
else:
print("You Should Enter a number Between 1 to 50")