Month: February 2022

Using psql

Using psql¶ Let us understand how to use psql utility to perform database operations. psql is command line utility to connect to the Postgres database server. It is typically used for the following by advanced Database users: Manage Databases Manage Tables Load data into tables for testing purposes We need to have at least Postgres …

Using psql Read More »

Accessing Elements – Python Tuples

Accessing Elements – tuples¶ Let us see details related to operations on tuples. Unlike other collections (list, set, dict) we have limited functions with tuple in Python. In [2]: %%HTML <iframe width=”560″ height=”315″ src=”https://www.youtube.com/embed/fZ-QOUk-ia4?rel=0&amp;controls=1&amp;showinfo=0″ frameborder=”0″ allowfullscreen></iframe> tuple is by definition immutable and hence we will not be able to add elements to a tuple or delete …

Accessing Elements – Python Tuples Read More »