“Retornar String Returns com parênteses python” Respostas de código

Obtenha string entre parênteses python

s = "alpha.Customer[cus_Y4o9qMEZAugtnW] ..."
m = re.search(r"\[([A-Za-z0-9_]+)\]", s)
print m.group(1)

> cus_Y4o9qMEZAugtnW
crookie14

Retornar String Returns com parênteses python

Instead of: return ("Temperature in Fahrenheit Shall Be: ", far)
You need to turn your variable to a string and then use the + operator:
return "Temperature in Fahrenheit Shall Be: " + str(far)

Source: https://stackoverflow.com/questions/55490290/python-return-statement-includes-brackets
Stormy Skylark

Respostas semelhantes a “Retornar String Returns com parênteses python”

Perguntas semelhantes a “Retornar String Returns com parênteses python”

Mais respostas relacionadas para “Retornar String Returns com parênteses python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código