A function must have as many arguments as defined. If the number of arguments is less or more it will give an error.
def name_function(firstname, lastname):
print(firstname + ” “ + lastname)
name_function(“Raj”, “Kumar”)

Blogger, Engineer & Entrepreneur
A function must have as many arguments as defined. If the number of arguments is less or more it will give an error.
def name_function(firstname, lastname):
print(firstname + ” “ + lastname)
name_function(“Raj”, “Kumar”)
Arguments are passed inside parentheses.
def our_second_function(firstname):
print(firstname + “Raj”)
our_second_function(“Mohan”)
our_second_function(“Narasimha”)
our_second_function(“Krishna”)
There can be as many arguments as required, separated by a comma(,).
def our_first_function():
print(“Hello enterprising people”)our_first_function()
In the above example, def is a keyword.
It is used to define a function.


According to White House sources US will soon open Consulate Offices in Bengaluru and Ahmedabad.
This development will help Visa seekers within Karnataka and nearby states to get their Visa’s approved in Bengaluru.
Column family databases are used to store unstructured, tabular data made up of rows and columns.
Primary Key: Primary key must be unique in a table.
Foreign Key: Foreign key is used to provide linkages between tables.
Index Key: Index key used for searches.

| API |
Used for |
|
Gremlin API |
Graph Databases |
|
MongoDB API |
Store BSON Format Data |
| Table API |
Retrieve Key/Value Pair |
| Cassandra API |
Retrieve Tabular Data |
