multiline – POFTUT

Php – Syntax Overview

[rps-include post=6522] Extension Php source or code files generally ends with .php but generally the extension is not important. Following extensions can be used too. php4 php5 php7 Php Tags Web based programming languages generally uses tags in order to surround related code. Php is web based programming language too and uses <?php … ?> tags. Second … Read more

Linux Bash Alias Command Tutorial

Linux Bash Alias Command Tutorial

Linux Bash provides some shortcuts about operations. Sometimes we need to run a log and error prone command in the shell. Every time writing or remembering the command is not a feasible way. Bash have alias feature which is used to set some shortcuts about user commands. alias Command Syntax The syntax of the alias definition … Read more

Multiline Strings in Python

Python supports different types and format strings. In this tutorial, we will simply look at multi-line strings. We have the following code and want to type it in a single expression in multiline. As a practical programming language Python provides different ways to create multi-line strings. Joining Line By Line The most basic and simplest … Read more