91-9990449935 0120-4256464 |
Python ExamplePython code is simple and easy to run. Here is a simple Python code that will print "Welcome to Python". A simple python example is given below. >>> a="Welcome To Python" >>> print a Welcome To Python >>> Explanation:
Python 3.4 ExampleIn python 3.4 version, you need to add parenthesis () in a string code to print it. >>> a=("Welcome To Python Example") >>> print a Welcome To Python Example >>>
Next TopicHow to execute Python
|