×
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
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

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.
Leo Tolstoy
However diffcult life may seem, there is always something you can do, and succeed at. It matters that you don not just give up.
Leo Tolstoy
1148
57.24
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     43527
01/01/2018     36477
25/06/2018     35475
28/06/2017     34547
02/08/2017     32975
01/08/2017     27458
06/07/2017     27205
15/05/2017     26841
14/07/2017     22455
21/04/2018     21107
softetechnologies