Write a function, sublist, that takes in a list of numbers as the parameter. In the function, use a while loop to return a sublist of the input list. The sublist should contain the same values of the original list up until it reaches the number 5 (it should not contain the number 5).
Write a function called check_nums that takes a list as its parameter, and contains a while loop that only stops once the element of the list is the number 7. What is returned is a list of all of the numbers up until it reaches 7.
Write a function, sublist, that takes in a list of strings as the parameter. In the function, use a while loop to return a sublist of the input list. The sublist should contain the same values of the original list up until it reaches the string βSTOPβ (it should not contain the string βSTOPβ).
Write a function called stop_at_z that iterates through a list of strings. Using a while loop, append each string to a new list until the string that appears is βzβ. The function should return the new list.
Challenge: Write a function called beginning that takes a list as input and contains a while loop that only stops once the element of the list is the string βbyeβ. What is returned is a list that contains up to the first 10 strings, regardless of where the loop stops. (i.e., if it stops on the 32nd element, the first 10 are returned. If βbyeβ is the 5th element, the first 4 are returned.) If you want to make this even more of a challenge, do this without slicing