9555593818

  • Facebook
  • Twitter
  • LinkedIn
  • YouTube
0
Careerlogonew.png

CAREER BODH SHIKSHAN PRASHIKSHAN SANSTHAN

A Learning Community

  • Home

  • Blog

  • Courses

    • O LEVEL COURSE
    • SEO COURSE
    • CCC-Course
  • Hindi Poem

  • Python Programs

  • Current Affairs

  • Cheap Flights

  • Tally Course

  • Contact

  • Audio Library

  • Shop

  • Plans & Pricing

  • More

    Use tab to navigate through the menu items.
    Call Now
    • All Posts
    • python program
    • CCC Set Papers
    • Python Tutorial
    • IT Notes
    • Internet
    • flights
    • Current Affairs
    • IOT Tutorial
    • Maths
    • Excel formulas
    • Web designing
    • SEO
    Search
    Rajesh Singh
    • Jun 20, 2021
    • 1 min

    Python program to add one or more element in List

    Program: #Append() is used for adding one element in List at the end of list. X=[9,18,27] X.append(36) print(X) output: [9, 18, 27, 36]...
    35 views0 comments
    Rajesh Singh
    • Jun 18, 2021
    • 1 min

    Python program to remove elements of a given list

    Program: n=[9,18,27,36,45,54,63] print("List=",n) i=int(input("Enter the position of elements to delete : ")) del n[i] print("List after...
    15 views0 comments
    Rajesh Singh
    • Jun 16, 2021
    • 1 min

    Python program to find minimum value in List

    Program: list=[(1,15,11), (4,7,1), (7,11,2),(10,10,18)] print("The list is: " +str(list)) res1=min(list)[0] res2=min(list)[1]...
    24 views0 comments
    Rajesh Singh
    • Jun 16, 2021
    • 1 min

    Python program to find maximum value in List

    Program: list=[(1,15,11), (4,7,1), (7,11,2),(10,10,18)] print("The list is: " +str(list)) res1=max(list)[0] res2=max(list)[1]...
    23 views0 comments
    Rajesh Singh
    • Jun 16, 2021
    • 1 min

    Python program convert kilometers to miles

    Program: n=float(input("Enter value in kilometers: ")) a=n*.621371 print("The miles of given kilometers is %.2f" %a) Output: Enter value...
    12 views0 comments
    Rajesh Singh
    • Jun 16, 2021
    • 1 min

    Python program to find square root of given number

    Program: n=float(input("Enter a number: ")) a=n**.5 print("The square roots of given number is ", a) Output: Enter a number: 16 The...
    13 views0 comments
    Python program to print series 1,4,9......15 terms
    Rajesh Singh
    • May 23, 2021
    • 1 min

    Python program to print series 1,4,9......15 terms

    Program: for i in range(1,16): j=i*i print(j) Output: 1 4 9 16 25 36..................225 Python program to print series 1,4,9......15...
    69 views0 comments
    Python program to print 10 even numbers in reverse order
    Rajesh Singh
    • May 23, 2021
    • 1 min

    Python program to print 10 even numbers in reverse order

    Program: a=20 while a>=2: print(a) a=a-2 Output: 20 18 16 14 12 10 8 6 4 2 Python program to print 10 even numbers in reverse order Video:
    2,108 views0 comments
    Python program to input principle amount, rate of interest and time and find to Simple interest.
    Rajesh Singh
    • May 21, 2021
    • 1 min

    Python program to input principle amount, rate of interest and time and find to Simple interest.

    Program: p=int(input("Enter the Principle Amount : ")) r=float(input("Enter the rate of interest : ")) t=int(input("Enter the Time Period...
    38 views0 comments
    Python program to input temperature in Celsius and convert it into Fahrenheit.
    Rajesh Singh
    • May 21, 2021
    • 1 min

    Python program to input temperature in Celsius and convert it into Fahrenheit.

    Program: C=int(input("Enter the temperature in Celsius : ")) F=1.8*C+32 print("Temperature in Fahrenheit = ", F) Output: Enter the...
    44 views0 comments
    Python program to print sum of n natural numbers
    Rajesh Singh
    • Nov 11, 2020
    • 1 min

    Python program to print sum of n natural numbers

    Program: a=int(input("Enter a number: ")) sum = 0 while(a > 0): sum=sum+a a=a-1 print("The sum of natural numbers is",sum) Output: Enter...
    77 views0 comments
    While Loop in Python with example
    Rajesh Singh
    • Apr 1, 2020
    • 1 min

    While Loop in Python with example

    While loop is used to iterate over a block of code again and again until a given condition returns false. A program is executed...
    19 views0 comments
    For Loop in Python with Example
    Rajesh Singh
    • Apr 1, 2020
    • 2 min

    For Loop in Python with Example

    for () loop is a counting loop and repeats its body for a pre-defined number of times. It is a very versatile statement and has many...
    21 views0 comments
    Nested If else statement in Python
    Rajesh Singh
    • Apr 1, 2020
    • 1 min

    Nested If else statement in Python

    If statement is within another if statement then this is called nested of control statements. Example num = -100 if num > 0:...
    8 views0 comments
    If elif else statement in python with examples
    Rajesh Singh
    • Apr 1, 2020
    • 1 min

    If elif else statement in python with examples

    We use the if..elif..else statement when we need to check multiple conditions. Syntax: if condition: statement1 elif condition_2:...
    21 views0 comments
    If else Statement in Python with Examples
    Rajesh Singh
    • Apr 1, 2020
    • 1 min

    If else Statement in Python with Examples

    if statements is execute a certain block of Python code when a particular condition is true. Whenever If..else statements are execute...
    12 views0 comments
    Python Program to find roots of a Quadratic Equation
    Rajesh Singh
    • Mar 31, 2020
    • 1 min

    Python Program to find roots of a Quadratic Equation

    There are two method for finding roots of quadratic equation: Program: First Method: import cmath a = float (input("Enter the value of a...
    105 views0 comments
    Python Program to Check a Number is a Perfect Number
    Rajesh Singh
    • Mar 31, 2020
    • 1 min

    Python Program to Check a Number is a Perfect Number

    A perfect number is a positive integer that is equal to the sum of its positive divisors, excluding the number itself. For instance, 6...
    1,843 views0 comments
    Python program to swap two numbers
    Rajesh Singh
    • Mar 31, 2020
    • 1 min

    Python program to swap two numbers

    Python program Swap two Number with temporary variable a=int(input("Enter The First Number :")) b=int(input("Enter The Second Number :"))...
    71 views0 comments
    Python Program to Check number is Palindrome or Not
    Rajesh Singh
    • Mar 29, 2020
    • 1 min

    Python Program to Check number is Palindrome or Not

    A palindromic number is a number that remains the same when its digits are reversed. Like 121. Program: n=int(input("Enter number:")) a=n...
    61 views0 comments
    1
    2

    CAREER BODH SHIKSHAN PRASHIKSHAN SANSTHAN

    Hire Rental Car

    Cheap Hotels Deals

    bitrajesh.1981@gmail.com

    9555593818

    Thakurdwara, Uttar Pradesh 244601, India

    • Facebook
    • Twitter
    • LinkedIn
    • YouTube