快速提问。我有以下代码。
import math #importar el modulo Math
def pi_round(value): #Funcion que redondea Pi
if value>15:
return f"Bueno, tecnicamente pi no llega taaaan lejos. El valor de pi completo es: {math.pi}"
else:
return f"El valor redondeado de pi es {round(math.pi,value)}"
if __name__=="__main__":
while True: #Revisar que el valor sea un numero
try:
value=int(input("Ingrese hasta que valor quiere redondear pi: "))
except:
print("Whoops! Hubo un error. Intente Nuevamente")
else:
break
print(pi_round(value))
注意:您可以忽略西班牙语。
代码非常简单,但是我被要求对代码使用pylint以获得评估。问题是我从pylint得到的只是:
No config file found, using default configuration
************* Module pi
E: 12, 0: invalid syntax (<string>, line 12) (syntax-error)
我要记住的是f字符串可能有问题,因为问题似乎在第12行(第一个f字符串)上。但是我不确定。
关于如何解决它的任何想法?