File size: 150 Bytes
81ecfab
 
 
 
 
1
2
3
4
5
6
import datetime

def print_with_time(*args):
    timestamp = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
    print(f"{timestamp}: ", *args)