Computer Science, asked by wwwtasneemaqeel, 11 months ago

What do you understand by block/codeblock/suite in python

Answers

Answered by bjpXIIA2
7

codeblock is an application of

c++ programming .python is another programming language

Answered by lovingheart
21

A block / code block are set of lines of codes / piece of executable text in python. A block can be a simple code block, or codes in function, or codes in modules. Certain code blocks will get executed only once.

A function code block will be called ‘n’ number of times, so it will get executed more than one times based on the need. On code block may contain other code block calls also.

Similar questions