У меня есть метод, который выглядит так:
proc getJobinfo {question} {
puts -nonewline "$question: "
flush stdout
gets stdin answer
# Can you combine totitle and trim into one line?
set titledanswer [string totitle $answer]
return $titledanswer
}
Я хотел бы вызвать trim
и totitle
в одной строке, возможно ли это?
Например, в Python
:
company_name : str = userInput.trim().title()