type – POFTUT

Php – Variables

[rps-include post=6522] Variables are used to store data in application. Variables can store data like string, text, integer, float number, logic value etc. Variables may defined different ways but there are some restrictions for variables names. Here some important things about variable naming. $ Sign All variables start with $ sign. It is like variable selector. … Read more

Python Type Function with Examples

Python provides a lot of different types for programming purposes. While using these structs we may need to decide which variable or identifier is which type. Python provides builtin type function in order to decide given identifier types. We just need to provide the identifier to the type function. Identify Type We will provide our identifier or … Read more