Question 3: Contains N Write a function that takes in a list and a number, and returns whether or not the list contains the value n. def has_n(1st, n): "*" Returns whether or not a list contains the value n. >> has_n([1, 2, 2], 2) True >> has_n([0, 1, 2], 3) False >> has_n([], 5) False "*** YOUR CODE HERE ***"
Question 3: Contains N Write a function that takes in a list and a number, and returns whether or not the list contains the value n. def has_n(1st, n): "*" Returns whether or not a list contains the value n. >> has_n([1, 2, 2], 2) True >> has_n([0, 1, 2], 3) False >> has_n([], 5) False "*** YOUR CODE HERE ***"
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
Related questions
Question
can I get the steps for how you went about doing this ty!
Expert Solution
Step 1
for searching a value in list use the in
operator, which will return the Boolean value True, if the list contains the item n.
here we have to search for n in list,
code:
def has_n(lst,n):
""" Return whether or not list contains the value n"""
return n in lst
print(has_n([1,2,3,4],3))
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY