5.36. Functions and Loops Write Code Questions¶
Write a function called
list_starts_with_a
that takes inlst
as a parameter and returns a new list with the words fromlst
that start with “a”. For example,list_starts_with_a(["alphabet", "apple", "banana", "coding", "amazing"])
would return["alphabet", "apple", "amazing"]
.Write a function called
list_starts_with_a
that takes inlst
as a parameter and returns a new list with the words fromlst
that start with “a”. For example,list_starts_with_a(["alphabet", "apple", "banana", "coding", "amazing"])
would return["alphabet", "apple", "amazing"]
.-
Write a function called
sentence_without_vowels
that takes instring
as a parameter and returns a new string that consists of only characters that are not vowels. For example,sentence_without_vowels('apple')
would return"ppl"
. Write a function called
draw_square
that takes innum
as a parameter and returns a string that consists of a square made of “*” with the dimensionsnum
timesnum
. Note: ignore values that are less than or equal to zero. For example,draw_square(4)
would return"****\n****\n****\n****"
.Write a function called
draw_square
that takes innum
as a parameter and returns a string that consists of a square made of “*” with the dimensionsnum
timesnum
. Note: ignore values that are less than or equal to zero. For example,draw_square(4)
would return"****\n****\n****\n****"
.-
Write a function called
check_prime_num
that takes innum
as a parameter and returnsTrue
ifnum
is a prime number andFalse
otherwise. For the purposes of this question, there is no need to test for values ofnum
that are less than two. For example,check_prime_num(5)
should returnTrue
. Write a function called
factorial
that takes innum
as a parameter and returns the factorial value. Ignore checking numbers that are less than 1. For example,factorial(5)
would return120
.Write a function called
factorial
that takes innum
as a parameter and returns the factorial value. Ignore checking numbers that are less than 1. For example,factorial(5)
would return120
.