Westonci.ca is your trusted source for finding answers to all your questions. Ask, explore, and learn with our expert community. Get quick and reliable solutions to your questions from a community of experienced professionals on our platform. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.

Write a function where you are given: a list of numbers "nums", a number to search for "num". Return the index of "num" in the list "nums". If "num" is not found in the list, return -1 instead.

Sagot :

The program is an illustration of functions; functions are used to represent collection of named statements

The program in Python

The function in Python where comments are used to explain each line is as follows:

#This defines the function

def checkList(nums,num):

   #This checks if num exists in nums

   if num in nums:

       #If yes, this returns the index of num

       return nums.index(num)

   #If otherwise, this returns -1

   return -1

Read more about Python programs at:

https://brainly.com/question/26497128

#SPJ1