CoderFunda
  • Home
  • About us
    • Contact Us
    • Disclaimer
    • Privacy Policy
    • About us
  • Home
  • Php
  • HTML
  • CSS
  • JavaScript
    • JavaScript
    • Jquery
    • JqueryUI
    • Stock
  • SQL
  • Vue.Js
  • Python
  • Wordpress
  • C++
    • C++
    • C
  • Laravel
    • Laravel
      • Overview
      • Namespaces
      • Middleware
      • Routing
      • Configuration
      • Application Structure
      • Installation
    • Overview
  • DBMS
    • DBMS
      • PL/SQL
      • SQLite
      • MongoDB
      • Cassandra
      • MySQL
      • Oracle
      • CouchDB
      • Neo4j
      • DB2
      • Quiz
    • Overview
  • Entertainment
    • TV Series Update
    • Movie Review
    • Movie Review
  • More
    • Vue. Js
    • Php Question
    • Php Interview Question
    • Laravel Interview Question
    • SQL Interview Question
    • IAS Interview Question
    • PCS Interview Question
    • Technology
    • Other

08 April, 2022

Python Keywords

 Programing Coderfunda     April 08, 2022     Python     No comments   

Python Keywords

Python Keywords are special reserved words that convey a special meaning to the compiler/interpreter. Each keyword has a special meaning and a specific operation. These keywords can't be used as a variable. Following is the List of Python Keywords.

TrueFalseNoneandas
assetdefclasscontinuebreak
elsefinallyelifdelexcept
globalforiffromimport
raisetryorreturnpass
nonlocalinnotislambda

Consider the following explanation of keywords.

  1. True - It represents the Boolean true, if the given condition is true, then it returns "True". Non-zero values are treated as true.
  2. False - It represents the Boolean false; if the given condition is false, then it returns "False". Zero value is treated as false
  3. None - It denotes the null value or void. An empty list or Zero can't be treated as None.
  4. and - It is a logical operator. It is used to check the multiple conditions. It returns true if both conditions are true. Consider the following truth table.
ABA and B
TrueTrueTrue
TrueFalseFalse
FalseTrueFalse
FalseFalseFalse

5. or - It is a logical operator in Python. It returns true if one of the conditions is true. Consider the following truth table.

ABA and B
TrueTrueTrue
TrueFalseTrue
FalseTrueTrue
FalseFalseFalse

6. not - It is a logical operator and inverts the truth value. Consider the following truth table.

ANot A
TrueFalse
FalseTrue

7. assert - This keyword is used as the debugging tool in Python. It checks the correctness of the code. It raises an AssertionError if found any error in the code and also prints the message with an error.

Example:

  1. a = 10  
  2. b = 0  
  3. print('a is dividing by Zero')  
  4. assert b != 0  
  5. print(a / b)  

Output:

a is dividing by Zero
Runtime Exception:
Traceback (most recent call last):
  File "/home/40545678b342ce3b70beb1224bed345f.py", line 4, in  
    assert b != 0, "Divide by 0 error"
AssertionError: Divide by 0 error

8. def - This keyword is used to declare the function in Python. If followed by the function name.

  1. def my_func(a,b):  
  2.     c = a+b  
  3.     print(c)  
  4. my_func(10,20)  

Output:

30

9. class - It is used to represents the class in Python. The class is the blueprint of the objects. It is the collection of the variable and methods. Consider the following class.

  1. class Myclass:  
  2.    #Variables……..  
  3.    def function_name(self):  
  4.       #statements………  

10. continue - It is used to stop the execution of the current iteration. Consider the following example.

  1. a = 0  
  2. while a < 4:  
  3.   a += 1   
  4.   if a == 2:  
  5.     continue  
  6.   print(a)  

Output:

1
3
4

11. break - It is used to terminate the loop execution and control transfer to the end of the loop. Consider the following example.

Example

  1. for i in range(5):  
  2.     if(i==3):  
  3.         break  
  4.     print(i)  
  5. print("End of execution")  

Output:

0
1
2
End of execution

12. If - It is used to represent the conditional statement. The execution of a particular block is decided by if statement. Consider the following example.

Example

  1. i = 18  
  2. if (1 < 12):  
  3. print("I am less than 18")  

Output:

I am less than 18

13. else - The else statement is used with the if statement. When if statement returns false, then else block is executed. Consider the following example.

Example:

  1. n = 11  
  2. if(n%2 == 0):  
  3.     print("Even")  
  4. else:  
  5.     print("odd")  

Output:

Odd

14. elif - This Keyword is used to check the multiple conditions. It is short for else-if. If the previous condition is false, then check until the true condition is found. Condition the following example.

Example:

  1. marks = int(input("Enter the marks:"))  
  2. if(marks>=90):  
  3.     print("Excellent")  
  4. elif(marks<90 and marks>=75):  
  5.     print("Very Good")  
  6. elif(marks<75 and marks>=60):  
  7.     print("Good")  
  8. else:  
  9.     print("Average")  

Output:

Enter the marks:85
Very Good

15. del - It is used to delete the reference of the object. Consider the following example.

Example:

  1. a=10  
  2. b=12  
  3. del a  
  4. print(b)  
  5. # a is no longer exist  
  6. print(a)    

Output:

12
NameError: name 'a' is not defined

16. try, except - The try-except is used to handle the exceptions. The exceptions are run-time errors. Consider the following example.

Example:

  1. a = 0  
  2. try:  
  3.    b = 1/a  
  4. except Exception as e:  
  5.    print(e)  

Output:

division by zero

17. raise - The raise keyword is used to through the exception forcefully. Consider the following example.

Example

  1. a = 5  
  2. if (a>2):  
  3.    raise Exception('a should not exceed 2 ')  

Output:

Exception: a should not exceed 2

18. finally - The finally keyword is used to create a block of code that will always be executed no matter the else block raises an error or not. Consider the following example.

Example:

  1. a=0  
  2. b=5  
  3. try:  
  4.     c = b/a  
  5.     print(c)  
  6. except Exception as e:  
  7.     print(e)  
  8. finally:  
  9.     print('Finally always executed')  

Output:

division by zero
Finally always executed

19. for, while - Both keywords are used for iteration. The for keyword is used to iterate over the sequences (list, tuple, dictionary, string). A while loop is executed until the condition returns false. Consider the following example.

Example: For loop

  1. list = [1,2,3,4,5]  
  2. for i in list:  
  3.     print(i)  

Output:

1
2
3
4
5

Example: While loop

  1. a = 0  
  2. while(a<5):  
  3.     print(a)  
  4.     a = a+1  

Output:

0
1
2
3
4

20. import - The import keyword is used to import modules in the current Python script. The module contains a runnable Python code.

Example:

  1. import math  
  2. print(math.sqrt(25))  

Output:

5

21. from - This keyword is used to import the specific function or attributes in the current Python script.

Example:

  1. from math import sqrt  
  2. print(sqrt(25))  

Output:

5

22. as - It is used to create a name alias. It provides the user-define name while importing a module.

Example:

  1. import calendar as cal  
  2. print(cal.month_name[5])  

Output:

May

23. pass - The pass keyword is used to execute nothing or create a placeholder for future code. If we declare an empty class or function, it will through an error, so we use the pass keyword to declare an empty class or function.

Example:

  1. class my_class:  
  2.     pass  
  3.   
  4. def my_func():   
  5.     pass   

24. return - The return keyword is used to return the result value or none to called function.

Example:

  1. def sum(a,b):  
  2.     c = a+b  
  3.     return c  
  4.       
  5. print("The sum is:",sum(25,15))  

Output:

The sum is: 40

25. is - This keyword is used to check if the two-variable refers to the same object. It returns the true if they refer to the same object otherwise false. Consider the following example.

Example

  1. x = 5  
  2. y = 5  
  3.   
  4. a = []  
  5. b = []  
  6. print(x is y)  
  7. print(a is b)  

Output:

True
False

Note: A mutable data-types do not refer to the same object.

26. global - The global keyword is used to create a global variable inside the function. Any function can access the global. Consider the following example.

Example

  1. def my_func():  
  2.     global a   
  3.     a = 10  
  4.     b = 20  
  5.     c = a+b  
  6.     print(c)  
  7.       
  8. my_func()  
  9.   
  10. def func():  
  11.     print(a)  
  12.       
  13. func()  

Output:

30
10

27. nonlocal - The nonlocal is similar to the global and used to work with a variable inside the nested function(function inside a function). Consider the following example.

Example

  1. def outside_function():    
  2.     a = 20     
  3.     def inside_function():    
  4.         nonlocal a    
  5.         a = 30    
  6.         print("Inner function: ",a)    
  7.     inside_function()    
  8.     print("Outer function: ",a)    
  9. outside_function()   

Output:

Inner function:  30
Outer function:  30

28. lambda - The lambda keyword is used to create the anonymous function in Python. It is an inline function without a name. Consider the following example.

Example

  1. a = lambda x: x**2  
  2. for i in range(1,6):  
  3.   print(a(i))  

Output:

1
4
9
16
25

29. yield - The yield keyword is used with the Python generator. It stops the function's execution and returns value to the caller. Consider the following example.

Example

  1. def fun_Generator():  
  2.   yield 1  
  3.   yield 2  
  4.   yield 3  
  5.   
  6.   
  7. # Driver code to check above generator function   
  8. for value in fun_Generator():  
  9.   print(value)  

Output:

1
2
3

30. with - The with keyword is used in the exception handling. It makes code cleaner and more readable. The advantage of using with, we don't need to call close(). Consider the following example.

Example

  1. with open('file_path', 'w') as file:   
  2.     file.write('hello world !')  

31. None - The None keyword is used to define the null value. It is remembered that None does not indicate 0, false, or any empty data-types. It is an object of its data type, which is Consider the following example.

Example:

  1. def return_none():  
  2.   a = 10  
  3.   b = 20  
  4.   c = a + b  
  5.   
  6. x = return_none()  
  7. print(x)  

Output:

None

We have covered all Python keywords. This is the brief introduction of Python Keywords. We will learn more in the upcoming tutorials.

  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Email ThisBlogThis!Share to XShare to Facebook
Newer Post Older Post Home

0 comments:

Post a Comment

Thanks

Meta

Popular Posts

  • Generate Migrations from an Existing Database With the Migration Generator Package
    Laravel Migration Generator Migration Generator for Laravel is a package by Bennett Treptow to generate migrations from existing database ...
  • Search Through Models with Laravel Searchable
      Laravel Searchable   is a package by   Spatie   to search through models and other sources pragmatically. Using this package, you can get ...
  • .Net 8 XUnit: Use an In-Memory DBConnection for testing as a replacement for the real MySqlConnection
    I'm creating tests for my .Net 8 API, and as I want to test with fake self created data (instead of using the real MySql connection) I...
  • 'Ramayana' to have 'Baahubali'-style cliffhanger ending
    image/jpeg https://timesofindia.indiatimes.com/entertainment/hindi/bollywood/news/ramayana-to-end-on-baahubali-style-cliffhanger-director-ni...
  • Fast Excel Package for Laravel
      Fast Excel   is a Laravel package for importing and exporting spreadsheets. It provides an elegant wrapper around   Spout —a PHP package t...

Categories

  • Ajax (26)
  • Bootstrap (30)
  • DBMS (42)
  • HTML (12)
  • HTML5 (45)
  • JavaScript (10)
  • Jquery (34)
  • Jquery UI (2)
  • JqueryUI (32)
  • Laravel (1017)
  • Laravel Tutorials (23)
  • Laravel-Question (6)
  • Magento (9)
  • Magento 2 (95)
  • MariaDB (1)
  • MySql Tutorial (2)
  • PHP-Interview-Questions (3)
  • Php Question (13)
  • Python (36)
  • RDBMS (13)
  • SQL Tutorial (79)
  • Vue.js Tutorial (69)
  • Wordpress (150)
  • Wordpress Theme (3)
  • codeigniter (108)
  • oops (4)
  • php (853)

Social Media Links

  • Follow on Twitter
  • Like on Facebook
  • Subscribe on Youtube
  • Follow on Instagram

Pages

  • Home
  • Contact Us
  • Privacy Policy
  • About us

Blog Archive

  • ►  2026 (73)
    • ►  07/26 - 08/02 (72)
    • ►  06/28 - 07/05 (1)
  • ►  2025 (4)
    • ►  07/06 - 07/13 (2)
    • ►  06/29 - 07/06 (2)
  • ►  2024 (486)
    • ►  09/15 - 09/22 (30)
    • ►  09/08 - 09/15 (35)
    • ►  09/01 - 09/08 (35)
    • ►  08/11 - 08/18 (2)
    • ►  08/04 - 08/11 (33)
    • ►  07/28 - 08/04 (30)
    • ►  07/07 - 07/14 (11)
    • ►  06/30 - 07/07 (35)
    • ►  06/23 - 06/30 (5)
    • ►  06/02 - 06/09 (31)
    • ►  05/26 - 06/02 (20)
    • ►  05/05 - 05/12 (29)
    • ►  04/28 - 05/05 (26)
    • ►  04/07 - 04/14 (10)
    • ►  03/31 - 04/07 (34)
    • ►  03/24 - 03/31 (10)
    • ►  03/03 - 03/10 (35)
    • ►  02/25 - 03/03 (15)
    • ►  02/04 - 02/11 (22)
    • ►  01/28 - 02/04 (30)
    • ►  01/07 - 01/14 (8)
  • ►  2023 (484)
    • ►  12/31 - 01/07 (35)
    • ►  12/24 - 12/31 (10)
    • ►  12/03 - 12/10 (33)
    • ►  11/26 - 12/03 (20)
    • ►  11/05 - 11/12 (35)
    • ►  10/29 - 11/05 (20)
    • ►  10/22 - 10/29 (9)
    • ►  10/15 - 10/22 (7)
    • ►  10/08 - 10/15 (9)
    • ►  10/01 - 10/08 (10)
    • ►  09/24 - 10/01 (9)
    • ►  09/17 - 09/24 (9)
    • ►  09/10 - 09/17 (7)
    • ►  09/03 - 09/10 (9)
    • ►  08/27 - 09/03 (9)
    • ►  08/20 - 08/27 (8)
    • ►  08/13 - 08/20 (8)
    • ►  08/06 - 08/13 (8)
    • ►  07/30 - 08/06 (8)
    • ►  07/23 - 07/30 (7)
    • ►  07/16 - 07/23 (8)
    • ►  07/09 - 07/16 (7)
    • ►  07/02 - 07/09 (8)
    • ►  06/25 - 07/02 (7)
    • ►  06/18 - 06/25 (7)
    • ►  06/11 - 06/18 (7)
    • ►  06/04 - 06/11 (11)
    • ►  05/28 - 06/04 (7)
    • ►  05/21 - 05/28 (8)
    • ►  05/14 - 05/21 (11)
    • ►  05/07 - 05/14 (7)
    • ►  04/30 - 05/07 (7)
    • ►  04/23 - 04/30 (8)
    • ►  04/16 - 04/23 (9)
    • ►  04/09 - 04/16 (7)
    • ►  04/02 - 04/09 (4)
    • ►  03/26 - 04/02 (21)
    • ►  03/19 - 03/26 (2)
    • ►  03/12 - 03/19 (9)
    • ►  03/05 - 03/12 (26)
    • ►  02/26 - 03/05 (25)
    • ►  01/15 - 01/22 (7)
    • ►  01/08 - 01/15 (1)
  • ▼  2022 (1037)
    • ►  12/11 - 12/18 (13)
    • ►  12/04 - 12/11 (1)
    • ►  11/27 - 12/04 (40)
    • ►  11/06 - 11/13 (1)
    • ►  10/16 - 10/23 (13)
    • ►  09/04 - 09/11 (5)
    • ►  08/21 - 08/28 (24)
    • ►  08/14 - 08/21 (24)
    • ►  07/03 - 07/10 (9)
    • ►  06/19 - 06/26 (3)
    • ►  05/29 - 06/05 (3)
    • ►  05/22 - 05/29 (3)
    • ►  05/15 - 05/22 (109)
    • ►  05/01 - 05/08 (7)
    • ►  04/24 - 05/01 (7)
    • ►  04/17 - 04/24 (64)
    • ►  04/10 - 04/17 (115)
    • ▼  04/03 - 04/10 (73)
      • Python Loops
      • Python Loops
      • Python If-else statements
      • Python Comments
      • Python Operators
      • Python Literals
      • Python Keywords
      • Python Data Types
      • Python Variables
      • First Python Program
      • How to Install Python (Environment Set-up)
      • Python Applications
      • Python History and Versions
      • Python Features
      • Python Tutorial
      • DBMS Interview Questions
      • DBMS MCQ Question Answer Interview Most Important
      • Deadlock in DBMS
      • Checkpoint
      • Log-Based Recovery
      • Failure Classification
      • Recoverability of Schedule
      • View Serializability
      • Conflict Serializable Schedule
      • Testing of Serializability
      • Schedule
      • States of Transaction
      • Transaction property
      • Transaction
      • Canonical Cover
      • Inclusion Dependency
      • Join Dependency
      • Multivalued Dependency
      • Relational Decomposition
      • Fifth normal form (5NF)
      • Fourth normal form (4NF)
      • Boyce Codd normal form
      • Third Normal Form (3NF)
      • Second Normal Form (2NF)
      • First Normal Form
      • Normalization
      • Inference Rule
      • Functional Dependency
      • Relational Calculus
      • Integrity Constraints
      • Blog Word Prefix in post only wordpress URL
      • URL prefix for posts WordPress
      • URL prefix for posts WordPress | Use Blog Word Pre...
      • Join Operations
      • Relational Algebra
      • Relational Model concept
      • Relationship of higher degree
      • Reduction of ER diagram to Table
      • Aggregation
      • Specialization
      • Generalization
      • DBMS Keys
      • Mapping Constraints
      • ER Design Issues
      • DBMS Notation of ER diagram
      • DBMS ER Model Concept
      • ACID Properties in DBMS
      • Database Language
      • Data Independence
      • Data model Schema and Instance
      • Data Models
      • Three schema Architecture
      • DBMS Architecture
      • DBMS vs. File System
      • Difference between DBMS and RDBMS
      • What is RDBMS
      • Types of Databases
      • What is database
    • ►  03/27 - 04/03 (77)
    • ►  03/13 - 03/20 (2)
    • ►  03/06 - 03/13 (25)
    • ►  02/27 - 03/06 (18)
    • ►  02/20 - 02/27 (153)
    • ►  02/13 - 02/20 (187)
    • ►  01/30 - 02/06 (45)
    • ►  01/23 - 01/30 (15)
    • ►  01/16 - 01/23 (1)
  • ►  2021 (412)
    • ►  10/24 - 10/31 (2)
    • ►  07/25 - 08/01 (1)
    • ►  07/11 - 07/18 (10)
    • ►  06/13 - 06/20 (29)
    • ►  05/23 - 05/30 (1)
    • ►  05/02 - 05/09 (24)
    • ►  04/25 - 05/02 (24)
    • ►  04/18 - 04/25 (112)
    • ►  04/11 - 04/18 (1)
    • ►  04/04 - 04/11 (6)
    • ►  03/28 - 04/04 (86)
    • ►  03/21 - 03/28 (19)
    • ►  03/14 - 03/21 (2)
    • ►  03/07 - 03/14 (10)
    • ►  02/28 - 03/07 (1)
    • ►  02/21 - 02/28 (29)
    • ►  02/14 - 02/21 (13)
    • ►  02/07 - 02/14 (12)
    • ►  01/31 - 02/07 (6)
    • ►  01/17 - 01/24 (2)
    • ►  01/10 - 01/17 (8)
    • ►  01/03 - 01/10 (14)
  • ►  2020 (376)
    • ►  12/27 - 01/03 (37)
    • ►  12/20 - 12/27 (92)
    • ►  12/13 - 12/20 (29)
    • ►  12/06 - 12/13 (37)
    • ►  11/29 - 12/06 (4)
    • ►  11/15 - 11/22 (14)
    • ►  11/08 - 11/15 (8)
    • ►  11/01 - 11/08 (2)
    • ►  10/18 - 10/25 (14)
    • ►  10/11 - 10/18 (16)
    • ►  10/04 - 10/11 (10)
    • ►  09/20 - 09/27 (10)
    • ►  09/06 - 09/13 (19)
    • ►  08/30 - 09/06 (26)
    • ►  08/23 - 08/30 (4)
    • ►  08/16 - 08/23 (2)
    • ►  07/12 - 07/19 (48)
    • ►  05/17 - 05/24 (2)
    • ►  01/05 - 01/12 (2)
  • ►  2019 (74)
    • ►  07/07 - 07/14 (6)
    • ►  06/16 - 06/23 (6)
    • ►  02/10 - 02/17 (17)
    • ►  01/13 - 01/20 (37)
    • ►  01/06 - 01/13 (8)
  • ►  2018 (376)
    • ►  12/30 - 01/06 (24)
    • ►  12/16 - 12/23 (8)
    • ►  12/09 - 12/16 (98)
    • ►  12/02 - 12/09 (16)
    • ►  11/18 - 11/25 (36)
    • ►  11/04 - 11/11 (18)
    • ►  10/28 - 11/04 (10)
    • ►  10/21 - 10/28 (26)
    • ►  10/14 - 10/21 (52)
    • ►  10/07 - 10/14 (4)
    • ►  09/30 - 10/07 (2)
    • ►  09/23 - 09/30 (68)
    • ►  09/16 - 09/23 (4)
    • ►  09/09 - 09/16 (4)
    • ►  08/26 - 09/02 (6)

Data Publish News

Loading...

Al Jazeera – Breaking News, World News and Video from Al Jazeera

Loading...

Laravel News

Loading...

Copyright © CoderFunda | Powered by Blogger
Design by Coderfunda | Blogger Theme by Coderfunda | Distributed By Coderfunda