Monthly Archives: April 2020

List in Python With Examples

Tpoic: List in Python With Examples What is List in Python Language? List is a dynamic collection of items of different types. Lists contain utems similar to the arrays of other programming languages like C, C++ and Java etc. Difference between Array and List The array is the collection of items of same data type.… Read More »

Loading

Logical Operators in Python Language

Topic: Logical Operators in Python Language Logical Operators in Python Language are used to create compound conditions. The compound conditions contain more than one conditions combined with logical operators. We use ‘and’ and ‘or’ logical operators to combine two or more conditions. Another logical operator ‘not’ is used to reverse the result of a condition.… Read More »

Loading

Python File Phonebook Program

Topic: Python file Phonebook Python file Phonebook Program: Write a Python Program using text files to create and maintain a Phone Book. Python Phone book Program uses file to provide the following functions: You can add new contact records It will display all the contact records stored already Search function will provide you the searching… Read More »

Loading

4 C Programs Find GCD and LCM

Topic: 4 C Programs Find GCD and LCM The Greatest Common Divisor – GCD The greatest common divisor (GCD) of two integers is the largest positive integer dividing both. In mathematics, the greatest common divisor (gcd) of two or more integers, is the largest positive integer that divides each of the integers. For example, the… Read More »

Loading

Flowcharts With Examples in Programming

Topic: Flowcharts With Examples and Explanation of Symbols Task: Today we will discuss the Role of Flowcharts in Computer Programming – Tutorial for Beginners. This is a basic tutorial on how to draw some basic flow charts to be used in computer program planning process. There will be an introduction to basic symbols needed to… Read More »

Loading