Advanced Python Exercises
Advanced Python Exercises
print(find_primes(10, 50))
Expected Output: [11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47]
word = "madam"
print(f"Is '{word}' a palindrome? {is_palindrome(word)}")
Expected Output: Is 'madam' a palindrome? True
floyds_triangle(5)
Expected Output: 12 34 5 67 8 9 1011 12 13 14 15