“Infinito en Python” Código de respuesta

Valor infinito de Python

test = float("inf")

In Python 3.5, you can do:

import math
test = math.inf
Ugliest Unicorn

Infinito en 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)
Aggressive Addax

infinito pitón

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

Python Set Negation Infinity

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

infinito pitón

math.inf
Hungry Hamster

Infinty en Python

not possible in a numerical value sorry 
Albert Einstein

Respuestas similares a “Infinito en Python”

Preguntas similares a “Infinito en Python”

Más respuestas relacionadas con “Infinito en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código