Skip to main content

Posts

python

Recent posts

How Internet Works?

    Introduction How does the Internet work? Good question! The Internet's growth has become explosive and it seems impossible to escape the bombardment of  www.com 's seen constantly on television, heard on radio, and seen in magazines. Because the Internet has become such a large part of our lives, a good understanding is needed to use this new tool most effectively. This whitepaper explains the underlying infrastructure and technologies that make the Internet work. It does not go into great depth, but covers enough of each area to give a basic understanding of the concepts involved. For any unanswered questions, a list of resources is provided at the end of the paper. Any comments, suggestions, questions, etc. are encouraged and may be directed to the author at the email address given above. Where to Begin? Internet Addresses Because the Internet is a global network of computers each computer connected to the Internet  must  have a unique address. Internet ad...

Print Natural Number In Reverse order

   It is be possible to print a number in reverse order :,,  like you input 5 then it will give you response like this:"5,4,3,2,1" If you want to apply this in python, then "copy" and "paste" the content given below  👇👇👇 FIRST METHOD n = int(input("Enter Number:")) print("Natural Numbers from" , n, "-1 in reverse") while (n>=1):     print(n, end=" ")     n-=1 SECOND METHOD n = int(input("Enter Number:")) print("Natural Numbers from" , n, "-1 in reverse") for i in range(n,0,-1):     print(i , end=" ")

How To Download Python In PC/LAPTOP?

  To  download python in latest version for PC/LAPTOP 👇👇  click here    As we know that the peoples are growing up in the online network. Most of the people have their dreams to work in the software companies like  google, Infosys,  etc. and in the upcoming time IT sector will provide more and more opportunities to achieve their dreams THE PYTHON LANGUAGE is  helpful on that field ;suppose if you want to be an webpage designer, then it help you. If you want a full description on python then  click here .

IN Python TO Find All The Divisors Of A Number.....

  IN PYTHON "Copy" this given code and "paste" it on the python display to run the programme. 👇👇👇👇👇 number = int(input("Enter Number :")) answer = [ ] for i in range(2,int(number/2)+1):     if number % i ==0:         answer.append(i) print("Number that can fully divide", number,"=" , answer)

In Python How To Find The Factorial Of A Number.?

  "copy" this given code and "paste" it on the python display to run the programme.   Here, i will show it by TWO methods. ⇒  FIRST METHOD  ðŸ‘‡ n = int(input("Enter Number:")) fact = 1 while(n >=2):     fact = fact*n     n-=1 print("Factorial=" ,fact) ⇒ SECOND METHOD  ðŸ‘‡ n = int(input("Enter Number:")) fact = 1 for i in range(n,1,-1):     fact = fact*i print("Factorial=" ,fact)