Write a Python function that takes two lists as input – a main list and a sublist. The function should return True if the sublist is present in the main list, and False otherwise.
Example 1:
Input: [1, 2, 3, 4, 5], [3, 4]
Output: True
Example 2:
Input: ['a', 'b', 'c', 'd', 'e'], ['c', 'e']
Output: False