Steps:
- Create a file with .py extension. - Write solution of given problem and save - Run to get the Output
Solution/code: welcome.py fileprint("Hello Python Learner")
OutputHello Python Learner
Explanation:- used to print a python objects(string, list, tuple, etc.). - Syntax: print(object(s), sep, end, file, flush)
0 Comments