Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

console.log() python

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

')
 
PREVIOUS NEXT
Tagged: #python
ADD COMMENT
Topic
Name
5+4 =