Python-String Literals(N)
Good Morning Boys Welcome to the 5th session of the online classes for Python Programing. -------------------------------------------------------------------------------------------------------------------------- Lets look at the solutions for the Exercise given in the last session. 1. happy_10 - This is a valid identifier. 2. For - This is a valid identifier because although "for" is a reserved word but because here it begins with capital f "F", it cannot be treated as a reserved word. User can use it as an identifier. 3. for - This is an invalid identifier because it is a reserved word. 4. 10find - This is an invalid identifier because it is begins with a number. 5. Count- This is a valid identifier as it conforms to the rules of making a valid identifier. 6. Count 1 - This is an invalid identifi...