{"id":3281,"date":"2021-04-21T15:23:46","date_gmt":"2021-04-21T09:53:46","guid":{"rendered":"https:\/\/python-programs.com\/?p=3281"},"modified":"2021-11-22T18:39:22","modified_gmt":"2021-11-22T13:09:22","slug":"python-programming-simple-statement","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-programming-simple-statement\/","title":{"rendered":"Python Programming \u2013 Simple statement"},"content":{"rendered":"

In this Page, We are Providing Python Programming \u2013 Simple statement. Students can visit for more Detail and Explanation of Python Handwritten Notes<\/a>\u00a0Pdf.<\/p>\n

Python Programming \u2013 Simple statement<\/h2>\n

Simple statement<\/strong><\/p>\n

A simple statement is comprised within a single logical line. Several simple statements may occur on a single physical line separated by semicolons. The extended BNF notation describing syntax for simple statement is:<\/p>\n

simple__stmt : := expression_stmt\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | assert_stmt \r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | assignment_stmt \r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | augmented_assignment_stmt \r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | pass_stmt \r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | del_stmt\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | print_stmt \r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | return_stmt\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | yield_stmt \r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | raise_stmt\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | break_stmt \r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | continue_stmt\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | import_stmt \r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | global_stmt \r\n  \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 | exec_stmt<\/pre>\n

This book will discuss some of the simple statements.<\/p>\n

Expression statement<\/strong><\/p>\n

An expression in a programming language is a combination of values, constants, variables, operators, functions etc. that are interpreted according to the particular rules of precedence for a particular programming language, which computes and then returns another value. This process is called evaluation. An expression statement evaluates the expression list (which may be a single expression).<\/p>\n

expression_stmt : := expression_list<\/pre>\n

The following are examples of expression statements and their evaluation.<\/p>\n

>>> 4 \r\n4\r\n>>> 4==4 \r\nTrue \r\n>>> 2+6 \r\n8\r\n>>> ' Hi ' * 3\u00a0\r\n' HiHiHi '<\/pre>\n

Assignment statement<\/strong><\/p>\n

Assignment statements are used to (re)bind names to values and to modify attributes or items of mutable objects. The following example shows binding value 4 to object (or name) a.<\/p>\n

>>> a=4<\/pre>\n

Pass statement<\/strong><\/p>\n

The pass statement is a null operation, nothing happens when it is executed. It is useful as a placeholder when a statement is required syntactically, but no code needs to be executed.<\/p>\n

pass_stmt\u00a0 : : =\u00a0 \" pass \"<\/pre>\n

The following example defines a function f and does nothing.<\/p>\n

>>> def f ( arg ) :\r\n. . .\u00a0 \u00a0 \u00a0 pass\r\n. . .<\/pre>\n

Del statement<\/strong><\/p>\n

This statement deletes each target in target_list from left to right.<\/p>\n

del_stmt : := \" del \" target_list<\/pre>\n

Deletion of a name removes the binding of that name from the local or global namespace, depending on whether the name occurs in a global statement in the same code block. If the name is unbound, a NameError exception will be raised.<\/p>\n

>>> a = [ -1 , 1 , 66\u00a0 .25 , 333 , 333 , 1234 . 5 ]\r\n>>> del a [ 0 ]\r\n>>> a\r\n[ 1 , 66 . 25 , 333 ;\u00a0 333 , 1234 . 5 ]\r\n>>> del a [ 2 : 4 ]\r\n>>> a\r\n[ 1 , 66 . 25 , 1234 . 5 ]\r\n>>> del a [ : ]\r\n>>> a\r\n[ ]\r\n>>> a = [ -1 , 1 , 66 . 25 , 333 , 333 , 1234 . 5 ]\r\n>>> del a\r\n>>> a\r\n\r\nTraceback ( most recent call last ) :\r\n    File \" <pyshell#24> \" , line 1 , in <module> \r\n         a\r\nNameError: name ' a ' is not defined<\/pre>\n

Print statement<\/strong><\/p>\n

The print statement evaluates each expression and then writes the resulting object to standard output (computer screen). If an object is not a string, it is first converted to a string using the rules for string conversion, the resulting or original string is then written. Space is written before each object is (converted and) written unless the output system believes it is positioned at the beginning of a line. A ‘ \\n’ character is written at the end unless the print statement ends with a comma. If only the print keyword is there in the print statement, then only the ‘ \\ n ‘ character is written. Following is a script “print_example.py”, having the following code:<\/p>\n

a=20 \r\nprint ' hi ' , 5 , a \r\nprint ' bye ' , 10 , a \r\nprint \r\nprint ' hi ' , 5 , a ,\r\nprint ' bye ' , 10 , a ,<\/pre>\n

Output after running the script is:<\/strong><\/p>\n

>>> runfile ( ' C : \/ Temp \/ print_example . py ' , wdir=r ' C : \/ Temp ' ) \r\nhi 5 20 \r\nbye 10 20\r\n\r\nhi 5 20 bye 10 20<\/pre>\n

Return statement<\/strong><\/p>\n

The return statement leaves the current function call with the expression_list (or None) as the return value.<\/p>\n

return_stmt : := \" return \" [ expression_list ]<\/pre>\n

The following script ” addition_example . py ” demonstrate the use of return statement.<\/p>\n

def summation ( arg1 , arg2 ) :\r\n       return arg1+arg2\r\n\r\nprint ' Sum is : ' , summation ( 1 , 2 )\r\n\r\ndef summation ( arg1 , arg2 ) :        # The function return None\r\n       print ' Sum is: ' , arg1+arg2\r\n\r\nsummation ( 3 , 4 ) \r\nprint summation ( 3 , 4 )\r\n\r\ndef summation ( arg1 , arg2 ) :        # The function return None\r\nprint 'Sum is: ',arg1+arg2\r\nreturn\r\n\r\nsummation ( 5 , 6 ) \r\nprint summation ( 5 ,6)\r\n\r\ndef summation(argl,arg2):               # The function return None\r\n    print ' Sum is: ' , arg1+arg2\r\n    return None\r\n\r\nsummation ( 7 , 8 ) \r\nprint summation ( 7 , 8 )\r\n\r\ndef summation ( arg1 , arg2) : \r\ndef add ( arg1 , arg2) : \r\n        return arg1+arg2 \r\nreturn add (arg1 , arg2 )\r\n\r\nprint ' Sum is : ' , summation ( 9 , 10)<\/pre>\n

The output after running the script is:<\/strong><\/p>\n

>>> runfile ( ' C : \/ Temp \/ addition_example . py ' , . wdir=r ' C : \/ Temp ' )\r\nSum is: 3\r\nSum is: 7 \r\nSum is: 7\r\nNone\r\nSum is: 11\r\nSum is: 11\r\nNone\r\nSura is: 15\r\nSum is: 15\r\nNone\r\nSum is: 19<\/pre>\n

Break statement<\/strong><\/p>\n

The break statement terminates the nearest enclosing loop, skipping the optional else clause if the loop has one.<\/p>\n

break_stmt : : = \" break \"<\/pre>\n

If a for loop is terminated by break, the loop control target keeps its current value. The following script ” break_example . py ” demonstrates the use of the break statement.<\/p>\n

a=5\r\nfor i in range ( 10 ) : \r\n    if i==a: \r\n          break \r\n  else:\r\n        print i\r\n\r\nprint i<\/pre>\n

The output after running the script is:<\/strong><\/p>\n

>>> runfile ( ' C : \/ Temp \/ addition_example . py ' , wdir= r ' C : \/ Temp ' )\r\n0 \r\n1\r\n2\r\n3\r\n3 \r\n5<\/pre>\n

Continue statement<\/strong><\/p>\n

The continue statement makes the current nearest enclosing loop skip one iteration and executes the remaining ones.<\/p>\n

continue_stmt : : = \" continue \"<\/pre>\n

The following script ” continue_example . py ” demonstrate the use of the continue statement.<\/p>\n

for i in range ( 10 ) : \r\n     if i>4 and i<8 : \r\n     continue \r\nelse: \r\n     print i<\/pre>\n

The output after running the script is:<\/strong><\/p>\n

>>> runfile ( ' C : \/ Temp \/ continue_example . py ' , wdir= r ' C : \/ Temp ' )\r\n0\r\n1\r\n2\r\n3\r\n4\r\n8\r\n9<\/pre>\n

Import statement<\/strong><\/p>\n

Definitions (variables, function definitions, etc.) from one module can be imported into another module using an import statement. For more information, please refer to chapter 5.<\/p>\n

Global statement<\/p>\n

The global statement is a declaration that makes listed identifiers to be interpreted as global. This will become clearer by referring to section 3.2.5.<\/p>\n

global_stmt : := \" global \" identifier ( \" , \" identifier) *<\/pre>\n","protected":false},"excerpt":{"rendered":"

In this Page, We are Providing Python Programming \u2013 Simple statement. Students can visit for more Detail and Explanation of Python Handwritten Notes\u00a0Pdf. Python Programming \u2013 Simple statement Simple statement A simple statement is comprised within a single logical line. Several simple statements may occur on a single physical line separated by semicolons. The extended …<\/p>\n

Python Programming \u2013 Simple statement<\/span> Read More »<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"spay_email":"","jetpack_publicize_message":"","jetpack_is_tweetstorm":false,"jetpack_publicize_feature_enabled":true},"categories":[5],"tags":[],"yoast_head":"\nPython Programming \u2013 Simple statement - Python Programs<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/python-programs.com\/python-programming-simple-statement\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Python Programming \u2013 Simple statement - Python Programs\" \/>\n<meta property=\"og:description\" content=\"In this Page, We are Providing Python Programming \u2013 Simple statement. Students can visit for more Detail and Explanation of Python Handwritten Notes\u00a0Pdf. Python Programming \u2013 Simple statement Simple statement A simple statement is comprised within a single logical line. Several simple statements may occur on a single physical line separated by semicolons. The extended … Python Programming \u2013 Simple statement Read More »\" \/>\n<meta property=\"og:url\" content=\"https:\/\/python-programs.com\/python-programming-simple-statement\/\" \/>\n<meta property=\"og:site_name\" content=\"Python Programs\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/btechgeeks\" \/>\n<meta property=\"article:published_time\" content=\"2021-04-21T09:53:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-22T13:09:22+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@btech_geeks\" \/>\n<meta name=\"twitter:site\" content=\"@btech_geeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prasanna\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/python-programs.com\/#organization\",\"name\":\"BTech Geeks\",\"url\":\"https:\/\/python-programs.com\/\",\"sameAs\":[\"https:\/\/www.instagram.com\/btechgeeks\/\",\"https:\/\/www.linkedin.com\/in\/btechgeeks\",\"https:\/\/in.pinterest.com\/btechgeek\/\",\"https:\/\/www.youtube.com\/channel\/UC9MlCqdJ3lKqz2p5114SDIg\",\"https:\/\/www.facebook.com\/btechgeeks\",\"https:\/\/twitter.com\/btech_geeks\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/python-programs.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/python-programs.com\/wp-content\/uploads\/2020\/11\/BTechGeeks.png\",\"contentUrl\":\"https:\/\/python-programs.com\/wp-content\/uploads\/2020\/11\/BTechGeeks.png\",\"width\":350,\"height\":70,\"caption\":\"BTech Geeks\"},\"image\":{\"@id\":\"https:\/\/python-programs.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/python-programs.com\/#website\",\"url\":\"https:\/\/python-programs.com\/\",\"name\":\"Python Programs\",\"description\":\"Python Programs with Examples, How To Guides on Python\",\"publisher\":{\"@id\":\"https:\/\/python-programs.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/python-programs.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/python-programs.com\/python-programming-simple-statement\/#webpage\",\"url\":\"https:\/\/python-programs.com\/python-programming-simple-statement\/\",\"name\":\"Python Programming \u2013 Simple statement - Python Programs\",\"isPartOf\":{\"@id\":\"https:\/\/python-programs.com\/#website\"},\"datePublished\":\"2021-04-21T09:53:46+00:00\",\"dateModified\":\"2021-11-22T13:09:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/python-programs.com\/python-programming-simple-statement\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/python-programs.com\/python-programming-simple-statement\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/python-programs.com\/python-programming-simple-statement\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/python-programs.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python Programming \u2013 Simple statement\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/python-programs.com\/python-programming-simple-statement\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/python-programs.com\/python-programming-simple-statement\/#webpage\"},\"author\":{\"@id\":\"https:\/\/python-programs.com\/#\/schema\/person\/ea8ce699662f0d7e248e52fe080b85bb\"},\"headline\":\"Python Programming \u2013 Simple statement\",\"datePublished\":\"2021-04-21T09:53:46+00:00\",\"dateModified\":\"2021-11-22T13:09:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/python-programs.com\/python-programming-simple-statement\/#webpage\"},\"wordCount\":586,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/python-programs.com\/#organization\"},\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/python-programs.com\/python-programming-simple-statement\/#respond\"]}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/python-programs.com\/#\/schema\/person\/ea8ce699662f0d7e248e52fe080b85bb\",\"name\":\"Prasanna\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/python-programs.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g\",\"caption\":\"Prasanna\"},\"url\":\"https:\/\/python-programs.com\/author\/prasanna\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Python Programming \u2013 Simple statement - Python Programs","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/python-programs.com\/python-programming-simple-statement\/","og_locale":"en_US","og_type":"article","og_title":"Python Programming \u2013 Simple statement - Python Programs","og_description":"In this Page, We are Providing Python Programming \u2013 Simple statement. Students can visit for more Detail and Explanation of Python Handwritten Notes\u00a0Pdf. Python Programming \u2013 Simple statement Simple statement A simple statement is comprised within a single logical line. Several simple statements may occur on a single physical line separated by semicolons. The extended … Python Programming \u2013 Simple statement Read More »","og_url":"https:\/\/python-programs.com\/python-programming-simple-statement\/","og_site_name":"Python Programs","article_publisher":"https:\/\/www.facebook.com\/btechgeeks","article_published_time":"2021-04-21T09:53:46+00:00","article_modified_time":"2021-11-22T13:09:22+00:00","twitter_card":"summary_large_image","twitter_creator":"@btech_geeks","twitter_site":"@btech_geeks","twitter_misc":{"Written by":"Prasanna","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/python-programs.com\/#organization","name":"BTech Geeks","url":"https:\/\/python-programs.com\/","sameAs":["https:\/\/www.instagram.com\/btechgeeks\/","https:\/\/www.linkedin.com\/in\/btechgeeks","https:\/\/in.pinterest.com\/btechgeek\/","https:\/\/www.youtube.com\/channel\/UC9MlCqdJ3lKqz2p5114SDIg","https:\/\/www.facebook.com\/btechgeeks","https:\/\/twitter.com\/btech_geeks"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/python-programs.com\/#\/schema\/logo\/image\/","url":"https:\/\/python-programs.com\/wp-content\/uploads\/2020\/11\/BTechGeeks.png","contentUrl":"https:\/\/python-programs.com\/wp-content\/uploads\/2020\/11\/BTechGeeks.png","width":350,"height":70,"caption":"BTech Geeks"},"image":{"@id":"https:\/\/python-programs.com\/#\/schema\/logo\/image\/"}},{"@type":"WebSite","@id":"https:\/\/python-programs.com\/#website","url":"https:\/\/python-programs.com\/","name":"Python Programs","description":"Python Programs with Examples, How To Guides on Python","publisher":{"@id":"https:\/\/python-programs.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/python-programs.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/python-programs.com\/python-programming-simple-statement\/#webpage","url":"https:\/\/python-programs.com\/python-programming-simple-statement\/","name":"Python Programming \u2013 Simple statement - Python Programs","isPartOf":{"@id":"https:\/\/python-programs.com\/#website"},"datePublished":"2021-04-21T09:53:46+00:00","dateModified":"2021-11-22T13:09:22+00:00","breadcrumb":{"@id":"https:\/\/python-programs.com\/python-programming-simple-statement\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/python-programs.com\/python-programming-simple-statement\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/python-programs.com\/python-programming-simple-statement\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/python-programs.com\/"},{"@type":"ListItem","position":2,"name":"Python Programming \u2013 Simple statement"}]},{"@type":"Article","@id":"https:\/\/python-programs.com\/python-programming-simple-statement\/#article","isPartOf":{"@id":"https:\/\/python-programs.com\/python-programming-simple-statement\/#webpage"},"author":{"@id":"https:\/\/python-programs.com\/#\/schema\/person\/ea8ce699662f0d7e248e52fe080b85bb"},"headline":"Python Programming \u2013 Simple statement","datePublished":"2021-04-21T09:53:46+00:00","dateModified":"2021-11-22T13:09:22+00:00","mainEntityOfPage":{"@id":"https:\/\/python-programs.com\/python-programming-simple-statement\/#webpage"},"wordCount":586,"commentCount":0,"publisher":{"@id":"https:\/\/python-programs.com\/#organization"},"articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/python-programs.com\/python-programming-simple-statement\/#respond"]}]},{"@type":"Person","@id":"https:\/\/python-programs.com\/#\/schema\/person\/ea8ce699662f0d7e248e52fe080b85bb","name":"Prasanna","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/python-programs.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g","caption":"Prasanna"},"url":"https:\/\/python-programs.com\/author\/prasanna\/"}]}},"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/posts\/3281"}],"collection":[{"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/comments?post=3281"}],"version-history":[{"count":3,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/posts\/3281\/revisions"}],"predecessor-version":[{"id":3362,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/posts\/3281\/revisions\/3362"}],"wp:attachment":[{"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/media?parent=3281"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/categories?post=3281"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/python-programs.com\/wp-json\/wp\/v2\/tags?post=3281"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}