Rohith

Creator of whiletrue.live.

@rohithreddykota

Using Jinja With Python

In this article we will shows how to create templates in Python with Jinja module.

Posted September 30, 2022 by Rohith ‐ 4 min read

quick-references blog

Replace Characters From End of String

Regex module `re` in python can be used to replace characters from end of the string.

Posted September 22, 2022 by Rohith ‐ 1 min read

quick-references python regex blog

Replace Non Alphanumeric Characters in Python

Non-alphanumeric characters in python string can be replaced using python regex module `re`

Posted September 22, 2022 by Rohith ‐ 1 min read

quick-references python regex blog

Primitive Data Structure vs Non Primitive Data Structure

Primitive data structure is a fundamental type of data structure that stores the data of only one type whereas the non-primitive data structure is a type of data structure which is a user-defined that stores the data of different types in a single entity.

Posted September 12, 2022 by Rohith and Anusha ‐ 1 min read

quick-references blog primitive-data-structure non-primitive-data-structure

Full Binary Tree vs Complete Binary Tree

A full binary tree is a binary tree in which all of the nodes have either 0 or 2 offspring. In other terms, a full binary tree is a binary tree in which all nodes, except the leaf nodes, have two offspring. When all of the levels of a binary tree are entirely filled, except for the last level, which can contain 1 or 2 children nodes and is filled from the left, it is said to be a complete binary tree.

Posted September 12, 2022 by Rohith and Anusha ‐ 1 min read

quick-references blog full-binary-tree complete-binary-tree