Skip to main content

Posts

Showing posts from August, 2020

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)

In Python To Check That The Number Is Prime or Not?

  "Copy" this given code and "Paste" it on the python display to run the programme. 👇👇👇👇👇 n=int(input("Enter Number:")) flag = True for i in range(2,n):     if n%i==0:         print(n,"Is divisible by", i )         flag=False if flag==True:     print(n, "Is a Prime Number") else:     print(n,"Is Not Prime Number")  

What Is Python?

  Python is a popular programming language.  It was created by Guido van Rossum, and  released in 1991. It is used for: web development (server-side), software development, mathematics, system scripting. What can Python do? Python can be used on a server to create web applications. Python can be used alongside software to create workflows. Python can connect to database systems. It can also read and modify files. Python can be used to handle big data and perform complex mathematics. Python can be used for rapid prototyping, or for production-ready software development. Why Python? Python works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc). Python has a simple syntax similar to the English language. Python has syntax that allows developers to write programs with fewer lines than some other programming  languages. Python runs on an interpreter system, meaning that code can be executed as soon as it is written.  This means that prototyping can be ...