block – POFTUT

Python Pass Statement

Python provides different keywords which do not exists in other programming languages.  pass is one of the original keyword used for  nothing. pass keyword is a requirement for python block specification and syntax. Why To pass? Other languages generally uses some block specifier like {} or ;  etc. For example we can define functions but if we … Read more

How To Define, Use Functions in Python With Def?

Functions are fundamental feature of Python programming language. Functions provides reusability of code parts. Functions provides some abstraction from code. We can define some code block and use it with a single line without copy and pasting the whole code block.In this tutorial we will look how to define and use Python functions or methods. … Read more

Powershell If-Elseif-Else Conditional Statement

Powershell is a really powerful scripting language. It provides  a lot of modern useful programming language features. It also have basic features like conditional statements like If . In this tutorial we will look syntax and use cases of If . If is used to check if specified condition/s are met and if the condition is … Read more

What is File System Block And Super Block?

Block is a segment of data that contains data for the file, binary, dll, metadata, etc. Block is used to store information about files. Some blocks hold metadata about file system and called superblock. Super Block The superblock is a segment of metadata that contains information about the file system on a block device. Superblock … Read more