“Бесконечность в питоне” Ответ

Бесконечная ценность питона

test = float("inf")

In Python 3.5, you can do:

import math
test = math.inf
Ugliest Unicorn

Бесконечность в питоне

# Defining a positive infinite integer 
positive_infnity = float('inf') 
print('Positive Infinity: ', positive_infnity) 
  
# Defining a negative infinite integer 
negative_infnity = float('-inf') 
print('Negative Infinity: ', negative_infnity)
Aggressive Addax

Бесконечный питон

positive_infinity = float('inf') 
negative_infinity = float('-inf') 
Successful Sandpiper

Python устанавливает отрицательную бесконечность

# Define Negative infinity number
ntive_inf = float('-inf')
print('Negative Infinity: ',ntive_inf)
Dentedghost

Бесконечный питон

math.inf
Hungry Hamster

Infinty в Python

not possible in a numerical value sorry 
Albert Einstein

Ответы похожие на “Бесконечность в питоне”

Вопросы похожие на “Бесконечность в питоне”

Больше похожих ответов на “Бесконечность в питоне” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования