Answers for "python - infinity"

2

infinity python

positive_infinity = float('inf') 
negative_infinity = float('-inf')
Posted by: Guest on October-26-2021
6

infinity in python

# 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)
Posted by: Guest on January-31-2021
5

python infinite value

test = float("inf")

In Python 3.5, you can do:

import math
test = math.inf
Posted by: Guest on March-26-2020

Python Answers by Framework

Browse Popular Code Answers by Language