print elements without print function in python

Solutions on MaxInterview for print elements without print function in python by the best coders in the world

showing results for - "print elements without print function in python"
Sami
18 Feb 2016
1import sys
2
3sys.stdout.write("Hello World ")
4sys.stdout.write("Welcome to Guru99 Tutorials")
5