Console.log () Python

class console:
  @staticmethod
  def log(*args, **kwargs):
    print(*args, **kwargs)
    
# example
console.log('hello world', end='\n\n')
Chrysler