Given the list primes, ``primes = [2, 3, 5, 7, 11, 13, 17, 19, 23,29]``, How do you obtain the primes 2 and 13? Select one: a. primes[::5] b. primes[::4] c. primes[::6] d. primes[::13]
Answers
Answered by
8
Answer:
There is between 6 numbers
Answered by
0
Given; the list primes, ``primes = [2, 3, 5, 7, 11, 13, 17, 19, 23,29]``
To Find; The correct option
Solution; A prime is a number that is divisible by 1 and itself.
According to this definition of prime numbers 2 and 13 both are prime numbers.
All the given numbers in list are the prime numbers.
#SPJ3
Similar questions