Protected: Installation of PostgreSQL
There is no excerpt because this is a protected post.
There is no excerpt because this is a protected post.
Introduction to PostgreSQL • PostgreSQL (pronounced as post-gress-Q-L) is a high demand open-source object relational database management system (ORDBMS). It was developed by a worldwide team of volunteers. It is not controlled by any private entity so, it is available for free. • PostgreSQL uses… Read More
FUNCTIONS IN PYTHON FUNCTION : A function is a block of code that executes only when it is called. Data can be passed to functions as parameters. A function can return the result or output the result. In python a function can be created or… Read More
LOOPS IN PYTHON Python language provides three types of loops, They are : while loop for loop nested loop Loop : It is a sequence of statements that will be repeated continuously until a certain condition is met. While Loop : It is used to… Read More
Basic Program Fundamentals in Python How To Take Input From User In Python We use The input() Function to take the input from the user in python.for this we don’t need to import any libraries in python. Syntax: Some point on input() function in python… Read More