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 »

 5,033 total views,  3 views today

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 »

 3,091 total views,  2 views today

Creator of Python Language

Topic: Creator of Python Language Guido van Rossum is the creator of the Python Guido van Rossum is the creator of the Python Programming Language. Guido van Rossum developed Python and first release of the Python programming language was in 1991. He is a Dutch Programmer. He was born on 31 January 1956. He grew… Read More »

 1,215 total views,  2 views today

Python pass Statement Example Code

Topic: Python pass Statement Example Code The pass statement in Python With Example Programs The Python pass statement indicates a null operation. Nothing happens, when the Python interpretor executes a pass statement. It is useful as a placeholder when a statement is required syntactically, but no code needs to be executed. For example: class MyClass:… Read More »

 1,865 total views,  2 views today

Use of break and continue in Python with Examples

Topic: Use of break and continue in Python with Examples What is the importance of break and continue Statements in Python with Examples? break Statement in Python In Python programming language, break statement is used to break ( terminate ) the for loop or while loop. As soon as the break statement is executed the… Read More »

 2,874 total views,  1 views today

Python Program Fibonacci Series Function

Topic: Python Program Fibonacci Series Function Write a user defined Fibonacci functin in Python to print the popular Fibonacci series up to the given number n. Here n is passed as an argument to the Fibonacci function and the program will display the Fibonacci series upto the provided number by the user input. What is… Read More »

 7,735 total views,  9 views today

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 »

 20,913 total views,  15 views today

Display Yearly Calendar C Program

Topic: Display Yearly Calendar C Program First of all this c program will require a four digit year to input. As soon as the use enters a correct year for example, 2020, this c program will display calendar of the year 2020 month wise. This c program to display calendar uses smaller modules called functions… Read More »

 8,545 total views,  2 views today

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 »

 5,123 total views,  7 views today

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 »

 22,895 total views,  8 views today