4

次の最終試験のために勉強しようとしてこのエラーが発生し、なぜそれが機能しないのかを理解する必要があります. これがコードです。

morning_agenda = "At 9.00AM the project team will assemble. The first topic will be fixing the bug in program product.py. We'll break for coffee at 10.30. Work will then continue on improving display.html until 12.30PM."

print morning_agenda

morning_agenda.sub('([0-9]+)\.([0-9]+)', r'\1:\2', morning_agenda)

print morning_agenda
4

1 に答える 1

13

re.subre モジュールの関数であり、文字列のメソッドではありません。

import re
morning_agenda = re.sub('([0-9]+)\.([0-9]+)', r'\1:\2', morning_agenda)
于 2012-11-02T04:07:01.660 に答える