PDA

View Full Version : What is the basics of Python?



lovevashikaran
11-07-2019, 04:01 AM
Hello friends,

What is the basics of Python?

Neo_5678
11-07-2019, 07:13 AM
Why don't you refer to the wiki or google? you will get instant results there. No need to post a thread for easily searchable question here.

PoolMaster
11-07-2019, 07:49 AM
Python is a general-purpose interpreted, interactive, object-oriented, and high-level programming language. It was created by Guido van Rossum during 1985- 1990. Like Perl, Python source code is also available under the GNU General Public License (GPL). This tutorial gives enough understanding on Python programming language.

RH-Calvin
11-07-2019, 09:11 AM
Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991, Python's design philosophy emphasizes code readability with its notable use of significant whitespace.

pharmasecure
11-09-2019, 12:11 AM
The Python language has many similarities to Perl, C, and Java. However, there are some definite differences between the languages.
A Python identifier is a name used to identify a variable, function, class, module or other object. An identifier starts with a letter A to Z or a to z or an underscore (_) followed by zero or more letters, underscores and digits (0 to 9).
Python does not allow punctuation characters such as @, $, and % within identifiers. Python is a case sensitive programming language. Thus, Manpower and manpower are two different identifiers in Python.

propertyseo
11-09-2019, 01:49 AM
Python is a high-level, object-oriented programming language, created by Guido van Rossum in 1991.[1] Python puts readability at a high standard and this makes it great for both programmers and non-programmers to learn. Python is cross-platform, which means you can run it on all major platforms like Microsoft Windows, Linux, and Mac OS X. Python is open source software and, as a result, has a large community of developers who help improve and contribute to the language. Currently, the main implementation of Python, CPython, is managed by the Python Software Foundation, a non-profit organization working to develop and maintain the Python standards.

sophiawils59
11-11-2019, 05:47 AM
Enough answers are given i think @op should close the thread.

jayam
02-19-2020, 04:09 AM
A simple language which is easier to learn. Python has a very simple and elegant syntax. ...
Free and open-source. ...
Portability. ...
Extensible and Embeddable. ...
A high-level, interpreted language. ...
Large standard libraries to solve common tasks. ...
Object-oriented.

Saravanan28
02-19-2020, 06:11 AM
Python is a simple and easy to learn because of its clear syntax and readability that's why it reduces the cost of program maintenance. It is good for starting out because of its simple syntax . Python's syntax are shorter than most other programming languages (Java, C, c++ etc).

GeethaN
03-24-2020, 07:20 AM
Python - Basic Syntax
First Python Program. Let us execute programs in different modes of programming. ...
Python Identifiers. A Python identifier is a name used to identify a variable, function, class, module or other object. ...
Reserved Words. ...
Lines and Indentation. ...
Multi-Line Statements. ...
Quotation in Python. ...
Comments in Python. ...
Using Blank Lines.

GeethaN
03-26-2020, 06:35 AM
Assuming you are a beginner, I would classify learning Python in 3 major stages.

Stage 1: Learning the syntax & basics.

Stage 2: Learning libraries & frameworks.

Stage 3: Building projects.

anjaligupta
03-26-2020, 07:05 AM
Thanks for sharing useful information.

shimar789
03-26-2020, 10:59 AM
First Python Program. Let us execute programs in different modes of programming. ...
Python Identifiers. A Python identifier is a name used to identify a variable, function, class, module or other object. ...
Reserved Words. ...
Lines and Indentation. ...
Multi-Line Statements. ...
Quotation in Python. ...
Comments in Python. ...
Using Blank Lines