Uncategorized

  • Print Numbers using For Loop..

    Print Numbers using For Loop..

    In this post we will see how to print the numbers in python using for loop concept. In short term for loop is a looping concept that execute the code continously until the codition given to that is becomes false let’s understand the code with an example written below and then try your own..…

  • Dictionaries (Python)

    Dictionaries (Python)

    In this post we will discuss about how we declared and assign a values to dictionary.. Dictionary is nothing but a bunch of values having iits key : value pair method What is key value pair method let’s understand this with a written code below… Code that written above is work on key :…

  • How the Arithmetic Operators Works…

    How the Arithmetic Operators Works…

    Arithmetic Operators are used to do the mathematical operations as per the user required like adding , subtracting , dividing the two numbers Addition Method Arithmetic Operator ” + ” (Addition…) code is below copied and use it… Code written in different ways but the concept is same… where ” + ” is arithmetic…

  • Concept of List ( User-Input)

    Concept of List ( User-Input)

    In this post we will learn how to take user-input and add or remove the items from the list…I’ll show you the code that how it works but you will download that code and modify it according to as you want Let’s start with the code after declaring the list we will use input…

  • Python Lists

    Python Lists

    Disscuss about how the lists were made and updates their items using append and remove function What is list.. list is nothing but bunch of different items that are placed in a single unit.. let’s see how does the lists were made and do some operations on it.. How to declare a list is…

  • Add and Remove Values in Tuples by User Input Method…

    Add and Remove Values in Tuples by User Input Method…

    In this post we will discuss about how to make a code to add and remove the values from tuples using user-input method.. Code is Shown Below… first make a tuple name as ” data “ now check the tuple working using print function now use input function now use if – else statement…

  • How to add and remove data in Tuples…

    How to add and remove data in Tuples…

    In this blog we will discuss about how to add the and remove the tuple Codes were given below… first make the tuple of your choice… check and print the tuple using print command… add value to the tuple using append… now check the updated tuple using print command Now see how to remove…

  • Calculator using Python…

    Calculator using Python…

    In this post we will see how to build/code a simple calculator… we will go now step by step with an proper explanation of code and after some time we will also make a section were you will found the bunch of complete codes soon.. Now let’s begin… Calculator Now we see how we…

  • Python with Tuples

    Python with Tuples

    In this post we were discuss about what are tuples and how that tuples are implemented in python language Concept of Tuples… Tuples are group of data assign to a single variable. In other words tuples are like bunch of books in a box where box is a variable and books are different data…

  • User-Input in Python

    User-Input in Python

    First the term mentioned above as “User-Input” is nothing but simply taking a value from user side but always remembered that the value that user gives is anything like integers , floating numbers and characters infact boolean(True/False) also.. so let’s start the topic.. Taking input from User… Delared a variable of your choice. After…