Answers for "do we have infinite in python"

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
1

python infinite loop

while True:
  print('This is an example')
Posted by: Guest on June-16-2021

Code answers related to "do we have infinite in python"

Python Answers by Framework

Browse Popular Code Answers by Language