Using bitwise operations, how would you multiply a given number by 2?
Implement def multiply_by_two(number): and return the resulting integer. The solution must use bitwise operations rather than *, and it must work for zero, positive integers, and negative integers.
def multiply_by_two(number):