Pinned Repositories
-1-Coding-Made-Easy
Here is the solution for "Deleting the Mid Node" and "Checking Palindrome" in a linked list using Python.
Arbitrary_Arguments
This is an illustration of using "Arbitrary Arguments" in Python in various programs . Here, the codes allow the users to enter any number of finite arguments at the time of method call. Arbitrary Arguments in Python are basically used when the user is unaware of the number of arguments needed .
Array-using-List-in-Python
Here is a practical demonstration of implementing various array and matrices operations using built in data type of list .
CSS-Basic-Learning
CSS is the language we use to style an HTML document. CSS describes how HTML elements should be displayed.Here, is the basic demonstration of using CSS in web pages.Here, is the practical demonstration of various basic concepts of CSS like CSS types, selectors, descendant selectors, grouping selectors, properties,etc.
Dictionary-in-Python
Dictionaries are used to store data values in key:value pairs. Dictionary is one of 4 built-in data types in Python used to store collections of data, the other 3 are List, Set, and Tuple. A dictionary is a collection which is ordered, un-indexed, changeable , does not allow duplicate key and can contain all other data types including list , set , dictionary and tuples as their items. Dictionary are written with braces {} .Here , practical demonstration of dictionary is given (creation, accessing, slicing, deleting elements, functions, operations, dictionary comprehensions, etc. ).
Filter-function-in-Python
The filter() function returns an iterator were the items are filtered through a function to test if the item is accepted or not. Here, practically filter() function is illustrated via taking two examples.
HTML-Basic-Learning
HTML is the standard markup language for Web pages. With HTML you can create your own Website. Here, is the basic demonstration of various commonly used HTML Tags.
Javascript-Basics
Javascript is the most programming language. It is often called scripting language. It controls the Browsers and is used to with Servers. Here, is the implementation of basic syntax of conditional statements, looping statements, array, class, object, etc.
List-in-Python
Lists are used to store multiple items in a single variable. List is one of 4 built-in data types in Python used to store collections of data, the other 3 are Tuple, Set, and Dictionary. A list is indexed, ordered , changeable , can contain duplicate values and all other data types including tuple, dictionary , set , etc as their items. List are written with [] brackets .Here , practical demonstration of list is given (creation, accessing, slicing, deleting elements, functions, operations, list comprehensions, etc. ).
Strings-Matrix
Programs based on strings and matrices .
Kashishkd77's Repositories
Kashishkd77/Arbitrary_Arguments
This is an illustration of using "Arbitrary Arguments" in Python in various programs . Here, the codes allow the users to enter any number of finite arguments at the time of method call. Arbitrary Arguments in Python are basically used when the user is unaware of the number of arguments needed .
Kashishkd77/List-in-Python
Lists are used to store multiple items in a single variable. List is one of 4 built-in data types in Python used to store collections of data, the other 3 are Tuple, Set, and Dictionary. A list is indexed, ordered , changeable , can contain duplicate values and all other data types including tuple, dictionary , set , etc as their items. List are written with [] brackets .Here , practical demonstration of list is given (creation, accessing, slicing, deleting elements, functions, operations, list comprehensions, etc. ).
Kashishkd77/Strings-Matrix
Programs based on strings and matrices .
Kashishkd77/-1-Coding-Made-Easy
Here is the solution for "Deleting the Mid Node" and "Checking Palindrome" in a linked list using Python.
Kashishkd77/Array-using-List-in-Python
Here is a practical demonstration of implementing various array and matrices operations using built in data type of list .
Kashishkd77/CSS-Basic-Learning
CSS is the language we use to style an HTML document. CSS describes how HTML elements should be displayed.Here, is the basic demonstration of using CSS in web pages.Here, is the practical demonstration of various basic concepts of CSS like CSS types, selectors, descendant selectors, grouping selectors, properties,etc.
Kashishkd77/Dictionary-in-Python
Dictionaries are used to store data values in key:value pairs. Dictionary is one of 4 built-in data types in Python used to store collections of data, the other 3 are List, Set, and Tuple. A dictionary is a collection which is ordered, un-indexed, changeable , does not allow duplicate key and can contain all other data types including list , set , dictionary and tuples as their items. Dictionary are written with braces {} .Here , practical demonstration of dictionary is given (creation, accessing, slicing, deleting elements, functions, operations, dictionary comprehensions, etc. ).
Kashishkd77/Filter-function-in-Python
The filter() function returns an iterator were the items are filtered through a function to test if the item is accepted or not. Here, practically filter() function is illustrated via taking two examples.
Kashishkd77/HTML-Basic-Learning
HTML is the standard markup language for Web pages. With HTML you can create your own Website. Here, is the basic demonstration of various commonly used HTML Tags.
Kashishkd77/Javascript-Basics
Javascript is the most programming language. It is often called scripting language. It controls the Browsers and is used to with Servers. Here, is the implementation of basic syntax of conditional statements, looping statements, array, class, object, etc.
Kashishkd77/Javascript-Practical-Implementation
Javascript is the most programming language. It is often called scripting language. It controls the Browsers and is used to with Servers. Here, is the implementation of various programs of conditional statements, looping statements, array, class, object, etc.
Kashishkd77/Kashishkd77
Config files for my GitHub profile.
Kashishkd77/Lambda-Function-in-Python
A lambda function is a small anonymous function. A lambda function can take any number of arguments, but can only have one expression. Here , illustration of lambda function is presented along with functions like filter(), reduce() and map().
Kashishkd77/Linked-List-in-Python
A linked list is a linear data structure, in which the elements are not stored at contiguous memory locations. Linked lists are often used because of their efficient insertion and deletion. They can be used to implement stacks, queues, and other abstract data types. Here, is the implementation of various operations of Linked List in Python like insertion, deletion ,count elements ,traversal, etc.
Kashishkd77/Modules-in-Python
A module is an object with arbitrarily named attributes like classes,functions,etc. that allows us to use this module easily multiple time in future . Here , practical demonstration of modules is given .
Kashishkd77/Queue-using-Linked-List-in-Python
A queue can be defined as an ordered list which enables insert operations to be performed at one end called REAR and delete operations to be performed at another end called FRONT. Queue is referred to be as First In First Out list. Here, is the implementation of queue using Linked List.
Kashishkd77/Queue-using-Lists-in-Python
A queue can be defined as an ordered list which enables insert operations to be performed at one end called REAR and delete operations to be performed at another end called FRONT. Queue is referred to be as First In First Out list. Here, is the implementation of queue using built in data type of Python i.e. Lists.
Kashishkd77/Self-Keyword-in-Python
"self" represents the instance of the class. By using the “self” keyword we can access the attributes and methods of the class in python. Here , use of "self" keyword is practically demonstrated resolving all the queries related to it .
Kashishkd77/Set-in-Python
Sets are used to store multiple items in a single variable. Set is one of 4 built-in data types in Python used to store collections of data, the other 3 are List, Tuple, and Dictionary. A set is un-indexed, unordered , unchangeable , cannot contain duplicate values and cannot contain other built-in data types like list , set , etc as their items. Sets are written with braces .Here , practical demonstration of set is given (creation, accessing, deleting elements, functions, operations, set comprehensions, etc. ).
Kashishkd77/Some-Operators-in-Java
Understanding the concept of Logical , Ternary and Type Conversion Operator through practical demonstration.
Kashishkd77/Stack-using-Linked-List-in-Python
A Stack is a linear data structure that follows the LIFO (Last-In-First-Out) principle. Stack has one end. It contains only one pointer top pointer pointing to the topmost element of the stack. Whenever an element is added in the stack, it is added on the top of the stack, and the element can be deleted only from the stack. Here, are three codes in which the top of stack is considered at front end ( with top pointer at front end ) and rear end ( with top pointer at front end and in another code the top pointer is maintained at rear end).
Kashishkd77/Stack-using-Lists-in-Python
A Stack is a linear data structure that follows the LIFO (Last-In-First-Out) principle. Stack has one end. It contains only one pointer top pointer pointing to the topmost element of the stack. Whenever an element is added in the stack, it is added on the top of the stack, and the element can be deleted only from the stack. Here, implementation of stack using built in data type of Python i.e. List.
Kashishkd77/Tic-Tac-Toe-in-Python
Tic-tac-toe, noughts and crosses is a paper-and-pencil game for two players, X and O, who take turns marking the spaces in a 3×3 grid. The player who succeeds in placing three of their marks in a diagonal, horizontal, or vertical row is the winner.
Kashishkd77/Tuples-in-Python
Tuples are used to store multiple items in a single variable. Tuple is one of 4 built-in data types in Python used to store collections of data, the other 3 are List, Set, and Dictionary. A tuple is indexed, ordered , unchangeable , can contain duplicate values and all other data types including list , set , etc as their items. Tuples are written with round brackets .Here , practical demonstration of tuples is given (creation, accessing, slicing, deleting elements, functions, operations, tuple comprehensions, etc. ).
Kashishkd77/Variable-Scope-in-Python
Variable scope defines the range within which a particular variable can be accessed . In Python , there exist following types of scope --> local , non local , global and built-in. Here , various scopes of variables are illustrated using various examples .