×
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
1767    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.
Albert Einstein
The only source of knowledge is experience.
Albert Einstein
1081
83.02
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     54493
25/06/2018     45585
01/01/2018     43924
28/06/2017     41439
02/08/2017     40528
01/08/2017     34522
06/07/2017     34298
15/05/2017     33543
11/09/2018     30807
14/07/2017     30316
softetechnologies