Posts

Showing posts from February, 2021

Python the Programming Language

Python the Programming Language                                                     [15] By Subhasis Dutta Email : sduttamail@gmail.com Mob: 9434110862   Python is a Programming Language.   Python is an interpreted, high-level and general-purpose programming language. Python's design philosophy emphasizes code readability with its notable use of significant indentation. Its language constructs and object-oriented approach aim to help programmers write clear, logical code for small and large-scale projects.      Q: How to RUN a Python file in IDE .    Ans. exec(open("test.py").read())   // File Name is test.py    #DAY  01 In the First Day we learn wring a simple program which show an output "My first python Program" . How to writing of program in file. How to Execute the file . #My first Python Program. # first.py # This is my first Python Program print( "This is my first Python Program" ) *# Write the above two line in a file  named first.py *# The