Search found 10 matches

by ramajayam
Wed Mar 06, 2024 8:03 am
Forum: Tally Automation
Topic: Ledger and DayBook in ODBC
Replies: 0
Views: 4824

Ledger and DayBook in ODBC

Tally-Excel- PowerBI- Power Query ODBC Connector

This Tool will help to import Tally Data (Master Data and Transactional Data) to excel /Power BI/ Power Query.



Direct Download from GitHub


[flash=]https://github.com/ramajayam-CA/Tally-Connector[/flash]
by ramajayam
Wed Mar 06, 2024 6:56 am
Forum: Python
Topic: Hashmap Data Type
Replies: 0
Views: 1780

Hashmap Data Type

Hashmap: A hashmap is also known as a hash table. A hashmap is one of the data structures in python that maps keys to its value pairs. It is somewhat similar to a dictionary since dictionaries also store key-value pairs but hashmaps use a function to compute the index value that stores or holds the...
by ramajayam
Wed Mar 06, 2024 6:50 am
Forum: Python
Topic: Queue Data Types
Replies: 0
Views: 1808

Queue Data Types

Queue: Queue is also not a built-in data structures in python. The queue is a user-defined data structure in python that is used to store data in the First In First Out (FIFO) manner. In queues, the insertion and deletion are done at different ends, where the insertion is done at the rear end and t...
by ramajayam
Wed Mar 06, 2024 6:49 am
Forum: Python
Topic: Stack Data Type - LIFO
Replies: 0
Views: 1791

Stack Data Type - LIFO

Stack: Stack is a user-defined data structures in python that are used to store data in the Last In First Out (LIFO) manner. In stacks, the insertion and deletion are done at one end, where the end is generally called the top. Since the last element inserted is served and removed first, the stack d...
by ramajayam
Wed Mar 06, 2024 6:48 am
Forum: Python
Topic: Set Data Type
Replies: 0
Views: 1721

Set Data Type

Set: A Set in Python programming is an unordered collection data type that is iterable, mutable and has no duplicate elements. The most common associated method of sets are set(), add(), update(), remove(), pop(), discard(), clear(), intersection(), union(), set_difference() etc. Example: myset = s...
by ramajayam
Wed Mar 06, 2024 6:47 am
Forum: Python
Topic: Dictionary Data Type
Replies: 0
Views: 1766

Dictionary Data Type

Dictionary: A dictionary in Python is a data structure that stores the value in value:key pairs. The most common associated method of dictionaries are get(), keys(), values(), items(), update(), pop(), clear() etc. Example: Dict = {1: ‘ICAI', 2: 'For', 3: ‘CA’} As you can see from the example, data...
by ramajayam
Wed Mar 06, 2024 6:44 am
Forum: Python
Topic: Tuples Data Types
Replies: 0
Views: 1719

Tuples Data Types

Tuples A tuple is a built-in data structure in Python similar to lists but also has some significant differences. The difference between the two is that once the elements are assigned to the tuple can’t be changed. Tuples are used to store an ordered series of elements and are defined by parenthese...
by ramajayam
Wed Mar 06, 2024 6:42 am
Forum: Python
Topic: List Data Types
Replies: 2
Views: 2848

List Data Types

List: In Python, the sequence of various data types is stored in a list. A list is a built-in data structure in Python, which is the collection of different kinds of values or items. Every item in the list, also known as the Index, has an address allocated to it. The index value begins at 0 and con...
by ramajayam
Sat Feb 10, 2024 6:42 pm
Forum: Python
Topic: Integer Types
Replies: 2
Views: 2404

Integer Types

The Topic Helps in understanding the Integer Data Types
by ramajayam
Fri Feb 09, 2024 9:11 am
Forum: Python
Topic: String Operations
Replies: 2
Views: 2575

String Operations

Code: Select all

x = "Icai"
y = "Chennai"

print(x,y)