LEARNING DATA SCIENCE , WEEK 2
PYTHON KEYWORDS Python keywords are special reserved words that have specific meanings and purposes and can not be used for anything but those specific purposes. Note: There is a function in python ,when you execute that it will show the list of python keywords. FUNCTION - help('keywords') PYTHON IDENTIFIERS Variable - Anything which holds certain value. The identifier is used to identify an entirely unique in a program at the time of execution. Example - name = 'ANSHULA' name is representing unique identity ANSHULA . There are few rules to define identifiers. 1. Use only alphabets , numbers or underscore. 2. Use of Special characters and keywords is not allowed. 3. Starting characters should be either underscore or alphabets , numbers are not allowed. COMMENT IN PYTHON Comment is additonal information about the code you have written so that other developer can understand that code, in case he wants to reprogram that code. # - Using this means you are writting a comme...