×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Consonant count in String Assignment 2 of South Point School List in Python
Assignment of South Point School List in Python - Python Language
1558    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

softetechnologies
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")
softetechnologies
Consonant count in String Assignment 2 of South Point School List in Python
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.
Rabindranath Tagore
Don't limit a child to your own learning, for he was born in another time.
Rabindranath Tagore
3861
75.03
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     52291
25/06/2018     44059
01/01/2018     42982
28/06/2017     40718
02/08/2017     39573
01/08/2017     33742
06/07/2017     33559
15/05/2017     32837
14/07/2017     29127
11/09/2018     29120
softetechnologies