Hello world
Welcome to wiki This is your first post. Edit or delete it, then start blogging!
Welcome to wiki This is your first post. Edit or delete it, then start blogging!
Want to eat crispy snacks at home? Here is the best and easiest recipe that can be quickly made using items available in the home.This snack is best for evening breakfast so let’s get started. For making Potato chips fries you need: Fresh Potatoes Corn Flour Salt Water Oil Steps for making Potato Chips Fries: … Read more
Arithmetic Operators in Python Arithmetic operators in python are used to perform mathematical calculations between two operands. Symbol Operation Example + Addition x + y – Subtraction x – y * Multiplication x * y / Division x / y % Modulus x % y ** Exponent x ** y // Floor Division x // … Read more
In this post we will learn how to print ASCII value in python using simple python program. What is ASCII value/code? ASCII stands for American Standard Code for Information Interchange. As we know that computer does not understand human language and it stores data in the form of 0 and 1. Therefore ASCII value is … Read more
Python program to check weather a number is Armstrong number or not. What is Armstrong Number? If the sum of cube of each digit of a 3 digit number is the number itself then such numbers are called Armstrong number. For example 153 is a armstrong because sum of cube of 1, 5, 3 is … Read more