The python language has many similarities to perl, c, and java. In statically typed languages such as c, c++, java or c#, a variable also has a type, meaning that only certain kinds of values can be stored in it For example, a variable of type integer is prohibited from storing text values [6] in dynamically typed languages such as python, a variable's type is inferred by its value, and can change according to its value In common lisp, both situations. Its design philosophy emphasizes code readability with the use of significant indentation
Python spam, ham, and eggs are the principal metasyntactic variables used in the python programming language [10] this is a reference to the famous comedy sketch, spam, by monty python, the eponym of the language [11] in the following example spam, ham, and eggs are metasyntactic variables and lines beginning with # are comments. The zen of python is a collection of 19 guiding principles for writing computer programs that influence the design of the python programming language [1] python code that aligns with these principles is often referred to as pythonic. The standard type hierarchy of python 3 in computer science and computer programming, a data type (or simply type) is a collection or grouping of data values, usually specified by a set of possible values, a set of allowed operations on these values, and/or a representation of these values as machine types
For example, in python, to print the string hello, world Followed by a newline, one only needs to write print(hello, world!) In contrast, the equivalent code in c++ [7] requires the import of the c++ standard library, the declaration of an entry point (main function), and a call to print a line of text to the standard output stream.
WATCH