In this blog , we will be creating a program to determine whether a number entered by user is positive, negative or zero. Program uses if elif and else statement.
Read More »Author: Rohan Jadhav
Finding Odd or Even number using if and else
To find odd and even number, we will be using if and else condition. This if and else condition will be created inside a function that we can call after getting value from the keyboard.
Read More »Conditional Programming
Conditional programming or branching is something that we use every day or every moment. For example, if it s raining then i need to carry an umbrella. If i am late for work, then i need call my manager.
The main tool in conditional programming is the if statement. This if statement has different form and can be use according to our requirement.
Functions in Python
Functions are group of statement created to perform specific task. There are several built in functions in Python such as print() to display output, sqrt() for calculating square root.
Read More »Finding biggest element from a list
Python provides max() function for finding biggest element from a list.
max() function returns a biggest element from a list.
There is also other way of finding biggest element from a list instead of using max() function. We can apply some logic to find biggest element from a list.
Read More »Simple Counter app using kivy python
In this blogs, we will be discussing about the simple counter app that has been developed in kivy python. This program is a mixture of kivy and kivymd widget. BoxLayout and Label taken from kivy whereas Button taken from kivymd.Read More »
Clock using KIVY Python
This blog discusses simple clock project using kivy and Python. This app is a simple UI clock app.Read More »
Printing element of list using while and for loop
In this blog, we will use while and for loop to display every elements of a list. For while loop, we need to make use of len() function. Read More »
Appending new element into a list
Elements in a list are changeable or mutable that means elements can be deleted, adding new element at the end of a list or updating current value of element with new one. Read More »