“return returns String avec supports python” Réponses codées

Obtenez de la chaîne entre parenthèses Python

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

> cus_Y4o9qMEZAugtnW
crookie14

return returns String avec supports 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

Réponses similaires à “return returns String avec supports python”

Questions similaires à “return returns String avec supports python”

Plus de réponses similaires à “return returns String avec supports python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code