EEE Dept Engineering Topics List

Python Programming

Subject and UNIT: Problem Solving and Python Programming: UNIT IV: Lists, Tuples, Dictionaries Engineering Python

Python supports a concept called "list comprehensions". It can be used to construct lists in a very natural, easy way, like a mathematician is used to do.

Python Programming

Subject and UNIT: Problem Solving and Python Programming: UNIT IV: Lists, Tuples, Dictionaries Engineering Python

Definition : In Python, dictionary is unordered collection of items. These items are in the form of key-value pairs.

Example Program | Python Programming

Subject and UNIT: Problem Solving and Python Programming: UNIT IV: Lists, Tuples, Dictionaries Engineering Python

Tuple is a sequence of values. It is similar to list but there lies difference between tuple and list

Syntax, Example Program | Python Programming

Subject and UNIT: Problem Solving and Python Programming: UNIT IV: Lists, Tuples, Dictionaries Engineering Python

The values in the list are called elements or items. These elements are separated by commas and enclosed within the square bracket.

Engineering Python Programming

Subject and UNIT: Problem Solving and Python Programming: UNIT IV: Lists, Tuples, Dictionaries Engineering Python

Engineering Python : UNIT IV : Lists, Tuples, Dictionaries : Syllabus, Contents

Control Flow, Functions, Strings | Engineering Python Programming

Subject and UNIT: Problem Solving and Python Programming: UNIT III: Control Flow, Functions, Strings Engineering Python

Engineering Python : UNIT III : Control Flow, Functions, Strings : Anna University Multiple Choice Questions & Answers

Control Flow, Functions, Strings | Engineering Python Programming

Subject and UNIT: Problem Solving and Python Programming: UNIT III: Control Flow, Functions, Strings Engineering Python

Engineering Python : UNIT III : Control Flow, Functions, Strings : Anna University Two Marks Questions & Answers

Control Flow, Functions, Strings

Subject and UNIT: Problem Solving and Python Programming: UNIT III: Control Flow, Functions, Strings Engineering Python

Following is a Python program that is used for obtaining the square root of a given number

Syntax, Example Program, Creation, Operations | Python Programming

Subject and UNIT: Problem Solving and Python Programming: UNIT III: Control Flow, Functions, Strings Engineering Python

A list in Python is just an ordered collection of items which can be of any type. By comparison an array is an ordered collection of items of a single type.

Syntax, Example Program | Python Programming

Subject and UNIT: Problem Solving and Python Programming: UNIT III: Control Flow, Functions, Strings Engineering Python

String is basically the sequence of characters. Any desired character can be accessed using the index.

Definition, Properties, Example Program, Advantages, Disadvantages, Comparison | Python Programming

Subject and UNIT: Problem Solving and Python Programming: UNIT III: Control Flow, Functions, Strings Engineering Python

Definition : Recursion is a property in which one function calls itself repeatedly in which the values of function parameter get changed on each call.

Syntax, Example Program | Python Programming

Subject and UNIT: Problem Solving and Python Programming: UNIT III: Control Flow, Functions, Strings Engineering Python

There are two types of functions. 1) The functions that return some value 2) The functions that does not return the value. The fruitful functions are the functions that return values.