Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はpythonが初めてです。ピリオドを区切り文字として使用して、文字列から最初の文を削除しようとしています。このインスタンスで使用する正しい方法は分割ですか? 思うように結果が出ない…
def get_summary(self): if self.description: s2 = self.description.split('.', 1)[1] return s2 else: return None