logo

Како написати квадратни корен у Пајтону?

Питхон има унапред дефинисану скрт() функција која враћа квадратни корен броја. Дефинише квадратни корен вредности која се множи да би дала број. Функција скрт() се не користи директно за проналажење квадратног корена датог броја, тако да треба да користимо а матх модул за позивање функције скрт(). Питхон .

На пример, квадратни корен од 144 је 12.

Сада, да видимо синтаксу функције квадратног корена да бисмо пронашли квадратни корен датог броја у Питхон-у:

Синтакса:

 math.sqrt(x) 

Параметри:

Икс : То је број. у коме број треба да буде већи од 0 и може бити децимални или цео број.

Повратак:

Излаз је вредност квадратног корена.

Белешка:

  • Излаз методе скрт() биће вредност са помичним зарезом.
  • Ако је дати улаз негативан број, онда ће излаз бити ВалуеЕррор. ВалуеЕррор се враћа јер се вредност квадратног корена било ког негативног броја не сматра реалним бројем.
  • Ако је улаз било шта осим броја, онда функција скрт() враћа НаН.

Пример:

Пример употребе функције скрт() у Питхон-у.

Код

 import math x = 16 y = math.sqrt(x) print(y) 

Излаз:

 4.0 

Како написати квадратни корен у Питхон-у

1. Коришћење методе матх.скрт().

Функција скрт() је уграђена функција која враћа квадратни корен било ког броја. Следе кораци за проналажење квадратног корена броја.

  1. Покрените програм
  2. Дефинишите било који број чији квадратни корен треба пронаћи.
  3. Позовите скрт() функцију и проследите вредност коју сте дефинисали у кораку 2 и сачувајте резултат у променљивој.
  4. Одштампајте квадратни корен.
  5. Прекините програм.

Метод Питхон матх.скрт() Пример 1

Пример Питхон програма за проналажење квадратног корена датог целог броја.

Код

 # import math module import math # define the integer value to the variable num1 num1 = 36 # use math.sqrt() function and pass the variable. result = math.sqrt(num1) # to print the square root of a given number n print(' Square root of number 36 is : ', result) # define the value num2 = 625 result = math.sqrt(num2) print(' Square root of value 625 is : ', result) # define the value num3 = 144 result = math.sqrt(num3) print(' Square root of number 144 is : ', result) # define the value num4 = 64 result = math.sqrt(num4) print(' Square root of number 64 is : ', result) 

Излаз:

 Square root of number 36 is : 6.0 Square root of number 625 is : 25.0 Square root of number 144 is : 12.0 Square root of number 64 is : 8.0 

Метод Питхон матх.скрт() Пример 2

Хајде да направимо питхон програм који проналази квадратни корен децималног броја.

Код

 # Import the math module import math # Calculate the square root of decimal numbers print(' The square root of 4.5 is ', math.sqrt(4.5)) # Pass the decimal number print(' The square root of 627 is ', math.sqrt(627)) # Pass the decimal number print(' The square root of 6.25 is ', math.sqrt(6.25)) # Pass the decimal number # Calculate the square root of 0 print(' The Square root of 0 is ', math.sqrt(0)) # Pass number as 0 

Излаз:

 The Square root of 4.5 is 2.1213203435596424 The Square root of 627 is 25.039968051096054 The Square root of 6.25 is 2.5 The Square root of 0 is 0.0 

Метод Питхон матх.скрт() Пример 3

У следећем програму смо прочитали број из корисника и пронашли квадратни корен.

Код

 # import math module import math a = int(input(' Enter a number to get the Square root ')) # Use math.sqrt() function and pass the variable a. result = math.sqrt(a) print(' Square root of the number is ', result) 

Излаз:

 Enter a number to get the Square root: 25 Square root of the number is: 5.0 

1. Коришћење функције матх.пов().

Пов() је уграђена функција која се користи у Питхон-у за враћање снаге броја. Има два параметра. Први параметар дефинише број, а други параметар дефинише повећање снаге на тај број.

пронађи мој ипхоне андроид

Питхон метода матх.пов() Пример

Погледајмо пример програма за функцију матх.пов():

Код

 # import the math module import math # take an input from the user num = float(input(' Enter the number : ')) # Use the math.pow() function and pass the value and 0.5 (which is equal to ?) as an parameters SquareRoot = math.pow( num, 0.5 ) print(' The Square Root of the given number {0} = {1}' .format( num, SquareRoot )) 

Излаз:

 Enter the number :628 The Square Root of the given number 628.0 = 25.059928172283335 

3. Коришћење Нумпи модула

НумПи модул је такође опција за проналажење квадратног корена у Питхон-у.

Питхон Нумпи Пример

Хајде да видимо пример програма за проналажење квадратног корена дате листе бројева у низу.

Код

 # import NumPy module import numpy as np # define an array of numbers array_nums = np.array([ 1, 4, 9, 16, 25 ]) # use np.sqrt() function and pass the array result = np.sqrt(array_nums) print(' Square roots of the given array are: ', result) 

Излаз:

 Square roots of the given array are: [ 1. 2. 3. 4. 5. ] 

4. Коришћење ** Оператор

Такође можемо користити оператор експонента да пронађемо квадратни корен броја. Оператор се може применити између два операнда. На пример, к**и. То значи да је леви операнд подигнут на степен десног.

Следе кораци за проналажење квадратног корена броја.

Корак 1. Дефинишите функцију и проследите вредност као аргумент.

Корак 2. Ако је дефинисани број мањи од 0 или негативан, не враћа ништа.

Корак 3. Користите експоненцијални знак ** да бисте пронашли степен броја.

Корак 4. Узмите нумеричку вредност од корисника.

Корак 5. Позовите функцију и сачувајте њен излаз у променљивој.

Корак 6. Прикажи квадратни корен броја у Питхон-у.

Корак 7. Изађите из програма.

Питхон ** Оператор Пример 1

Хајде да применимо горње кораке у Питхон програму и израчунамо квадратни корен броја.

Код

 # import the math package or module import math # define the sqrt_fun() and pass the num as an argument def sqrt_fun(num): if num <0: 0 # if num is less than or negative, it returns nothing return else: ** 0.5 use the exponent operator (' enter a numeric value: ') ) take an input from user call sqrt_fun() to find result res="sqrt_fun(num)" print square root of variable print(' {0}="{1}" '.format(num, res)) < pre> <p> <strong>Output:</strong> </p> <pre> Enter a numeric value: 256 Square Root of the 256 = 16.0 </pre> <p> <strong>Explanation:</strong> </p> <p>As we can see in the above example, first we take an input (number) from the user and then use the exponent ** operator to find out the power of a number. Where 0.5 is equal to &#x221A; (root symbol) to raise the power of a given number. At last, the code prints the value of the num and the comparing square root esteem utilizing the format() function. On the off chance that the client inputs a negative number, the capability will not return anything and the result will be clear.</p> <h3>Python ** Operator Example 2</h3> <p>Let&apos;s create a Python program that finds the square root of between the specified range. In the following program, we have found the square root of all the number between 0 to 30.</p> <p> <strong>Code</strong> </p> <pre> # Import math module import math # Iterate through numbers from 0 to 29 and print their square roots for i in range(30): # Use the format() method to insert the values of i and its square root into the string print(&apos; Square root of a number {0} = {1} &apos;.format( i, math.sqrt(i))) </pre> <p> <strong>Output:</strong> </p> <pre> Square root of a number 0 = 0.0 Square root of a number 1 = 1.0 Square root of a number 2 = 1.4142135623730951 Square root of a number 3 = 1.7320508075688772 Square root of a number 4 = 2.0 Square root of a number 5 = 2.23606797749979 Square root of a number 6 = 2.449489742783178 Square root of a number 7 = 2.6457513110645907 Square root of a number 8 = 2.8284271247461903 Square root of a number 9 = 3.0 Square root of a number 10 = 3.1622776601683795 Square root of a number 11 = 3.3166247903554 Square root of a number 12 = 3.4641016151377544 Square root of a number 13 = 3.605551275463989 Square root of a number 14 = 3.7416573867739413 Square root of a number 15 = 3.872983346207417 Square root of a number 16 = 4.0 Square root of a number 17 = 4.123105625617661 Square root of a number 18 = 4.242640687119285 Square root of a number 19 = 4.358898943540674 Square root of a number 20 = 4.47213595499958 Square root of a number 21 = 4.58257569495584 Square root of a number 22 = 4.69041575982343 Square root of a number 23 = 4.795831523312719 Square root of a number 24 = 4.898979485566356 Square root of a number 25 = 5.0 Square root of a number 26 = 5.0990195135927845 Square root of a number 27 = 5.196152422706632 Square root of a number 28 = 5.291502622129181 Square root of a number 29 = 5.385164807134504 Square root of a number 30 = 5.477225575051661 </pre> <h2>Conclusion:</h2> <p>All in all, there are multiple ways of tracking down the square root value of a given number in Python. We can utilize the number related math module, the ** operator, the pow() method, or the NumPy module, contingent upon our prerequisites.</p> <hr></0:>

Објашњење:

Као што можемо видети у горњем примеру, прво узимамо унос (број) од корисника, а затим користимо оператор експонент ** да бисмо сазнали снагу броја. Где је 0,5 једнако √ (корен симбол) за повећање степена датог броја. Најзад, код штампа вредност броја и вредности квадратног корена за поређење користећи функцију формат(). У случају да клијент унесе негативан број, могућност неће ништа вратити и резултат ће бити јасан.

Питхон ** Оператор Пример 2

Хајде да направимо Питхон програм који проналази квадратни корен између наведеног опсега. У следећем програму пронашли смо квадратни корен свих бројева између 0 и 30.

Код

 # Import math module import math # Iterate through numbers from 0 to 29 and print their square roots for i in range(30): # Use the format() method to insert the values of i and its square root into the string print(&apos; Square root of a number {0} = {1} &apos;.format( i, math.sqrt(i))) 

Излаз:

 Square root of a number 0 = 0.0 Square root of a number 1 = 1.0 Square root of a number 2 = 1.4142135623730951 Square root of a number 3 = 1.7320508075688772 Square root of a number 4 = 2.0 Square root of a number 5 = 2.23606797749979 Square root of a number 6 = 2.449489742783178 Square root of a number 7 = 2.6457513110645907 Square root of a number 8 = 2.8284271247461903 Square root of a number 9 = 3.0 Square root of a number 10 = 3.1622776601683795 Square root of a number 11 = 3.3166247903554 Square root of a number 12 = 3.4641016151377544 Square root of a number 13 = 3.605551275463989 Square root of a number 14 = 3.7416573867739413 Square root of a number 15 = 3.872983346207417 Square root of a number 16 = 4.0 Square root of a number 17 = 4.123105625617661 Square root of a number 18 = 4.242640687119285 Square root of a number 19 = 4.358898943540674 Square root of a number 20 = 4.47213595499958 Square root of a number 21 = 4.58257569495584 Square root of a number 22 = 4.69041575982343 Square root of a number 23 = 4.795831523312719 Square root of a number 24 = 4.898979485566356 Square root of a number 25 = 5.0 Square root of a number 26 = 5.0990195135927845 Square root of a number 27 = 5.196152422706632 Square root of a number 28 = 5.291502622129181 Square root of a number 29 = 5.385164807134504 Square root of a number 30 = 5.477225575051661 

Закључак:

Све у свему, постоји више начина за праћење вредности квадратног корена датог броја у Питхон-у. Можемо да користимо математички модул који се односи на бројеве, оператор **, метод пов() или модул НумПи, зависно од наших предуслова.