Keywords
Python has a set of keywords that are reserved words that cannot be used as variable names, function names, or any other identifiers.There are 35 keywords. How to know the keywords list.To see the complete list of reserved words in python in the following:
import keyword
keyword.kwlist
['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
len(keyword.kwlist)
35
Data Types
Variables can store data of different types, and different types can do different things.Python has the following data types built-in by default, in these categories:
Numeric Types: int, float, complex
Sequence Types: list, tuple, range
Mapping Type: dict
Set Types: set, frozenset
Boolean Type: bool
Binary Types: bytes, bytearray, memoryview
None Type: NoneType
Apart from python additional information to be known:
- In a website, the side where the user can view the content and perform any action is known as the client side. The server side or backend, refers to the area hidden from users and in charge of storing and browsing data.
- There are different kinds of text editors around the world, some of them are vim,emacs,vi,. These are called Terminal based text editors.
- notepad,notepad++,sublime text, Ms-word,libreoffice writer.These are called Graphical user interface editors.
- Is there any tamil programming language published?Yes there are few.The first open source tamil programming lanugage is Ezhil(எழில்).It was created by Muthiah Annamalai.It was officially anounced in july 2009.It was developed using python.
References
https://www.w3schools.com/python/python_ref_keywords.asp
https://www.w3schools.com/python/python_datatypes.asp
https://codeinstitute.net/global/blog/client-side-vs-server-side/
Top comments (0)