Python - Standard Library Usage
Find the bug in this code snippet:
from datetime import datetime, timedelta now = datetime.now() new_time = now + '5 days' print(new_time)
