Ask questions which are clear, concise and easy to understand.
Ask QuestionPosted by Amit Kumar 3 years, 11 months ago
- 1 answers
Posted by Deep Samadder 3 years, 11 months ago
- 3 answers
Posted by All Rounder Mkjha 3 years, 11 months ago
- 2 answers
Posted by Priyanshi Chaurasiya 3 years, 11 months ago
- 1 answers
Kanishk Gupta 3 years, 11 months ago
Posted by Rajveet Sengar 4 years ago
- 0 answers
Posted by Hari Mukund G 4 years ago
- 1 answers
Posted by Zeeshan Raza 4 years ago
- 3 answers
Rachit Dwivedi 4 years ago
All Rounder Mkjha 4 years ago
Posted by Badboy Gaming 4 years ago
- 3 answers
Badboy Gaming 3 years, 10 months ago
Badboy Gaming 3 years, 11 months ago
Posted by Adnan Khan 4 years ago
- 2 answers
Yogita Ingle 4 years ago
A group of computers which are connected to each other and follow similar usage protocols for the purpose of sharing information and having communications provided by the networking nodes is called a Computer Network.
A network may be small where it may include just one system or maybe as large as what one may want. The nodes may further be classified into various types. These include:
- Personal Computers
- Servers
- Networking Hardware
- General Hosts
Networking can be classified into three types:
- Types of Computer Networks
- Topology
- Interpreters
Posted by Mahima Sarohey 4 years ago
- 1 answers
Yogita Ingle 4 years ago
Interspace is a client/server software program that allows multiple users to communicate online with real-time audio, video and text chat in dynamic 3D environments. Interspaceprovides the most advanced form of communication available on the Internet today.
The Interspace is a vision of what the Internet will become, where users cross-correlate information in multiple sources. It is an applications environment for interconnecting spaces to manipulate information, much as the Internet is a protocol environment for interconnecting networks to transmit data.
Posted by Abhijeet Pratap Singh 4 years ago
- 3 answers
Milind Pandey 4 years ago
Posted by Kavya Thakur 4 years ago
- 1 answers
Posted by Anshika Pareek 4 years ago
- 0 answers
Posted by Nupur Naik 4 years ago
- 1 answers
Milind Pandey 4 years ago
Posted by Samreet Kaur 4 years, 1 month ago
- 0 answers
Posted by Kulamani Pradhan 4 years, 1 month ago
- 2 answers
Gaurav Seth 4 years, 1 month ago
1. Using Exponent
<textarea data-settings="" readonly="readonly" wrap="soft"></textarea>
1 2 3 |
number = int(input("enter a number: ")) sqrt = number ** 0.5 print("square root:", sqrt) |
Output:
enter a number: 64
square root: 8.0
In above program, first we’re taking a number from user as input and the entered value will be converted to int from string and will store into variable called number. Then we are using exponent (**) sign, which is used to find out the power of a number. But we know that if a number have power ½ or 0.5 then it will represent to the square root of that number. That’s why we are using 0.5 as power here. So the number**0.5 will give us square root of that number and will be stored in variable named as sqrt. In last line we’re just printing the square root of the number.
2. Using math.sqrt() Method
<textarea data-settings="" readonly="readonly" wrap="soft"></textarea>
1 2 3 4 |
import math number = int(input("enter a number:")) sqrt = math.sqrt(number) print("square root:" , sqrt) |
sqrt() is the predefined method used to find square root in python. But we have to import math module to use the sqrt() method. In first line, we’re importing math module, then in next line, taking input from user. After that we’re finding the square root of the number using sqrt() method and result will be stored into sqrt variable. In last line, just printing the square root as in first program.
3. Using math.pow() Method
<textarea data-settings="" readonly="readonly" wrap="soft"></textarea>
1 2 3 4 |
import math number = int(input("enter a number:")) sqrt = math.pow(number, 0.5) print("square root: ", sqrt) |
pow() is also a predefined method to find out power of a number, it takes two arguments as input, first is the number itself and second one is power of that number. The program is same as first program where we’re using (**) sign to find out the square root but only different is this that here we’re using a predefined method pow() instead of (**) sign to get the power of that number.
If you’ve any problem related with article or have any other possible way to find square root in python then please let us know in comments.
<center> </center>Posted by Fãb Høñëy 4 years, 1 month ago
- 1 answers
Agneepradeep Verma 4 years, 1 month ago
Posted by Rohit Kumar 4 years, 1 month ago
- 0 answers
Posted by Suba Sri 4 years, 1 month ago
- 0 answers
myCBSEguide
Trusted by 1 Crore+ Students
Test Generator
Create papers online. It's FREE.
CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
Gaurav Seth 3 years, 11 months ago
0Thank You