以下程序中存在错误,请改正这些错误。 import re import calendar import datetime def process_date(user_input): user_input = re.sub(r"/","",user_input) # substitute (替换)/ with space user_input =re.sub(r"-","", user_input) # substitute - with space return user_input def find_day(date): born = datetime.datetime.strptime( date, "%d %m %Y" ). weekdayO) # this statement returns an integer corresponding to the day of the week return calendar.day _name[born] # To get the input from the user # User may type 1/2/1999 or 1-2-1999 user_input = int(input("Enter date date =process_date(user_input) ")) print("Day on "+ user_input+" is "+ find_day(date)
时间: 2024-03-24 14:39:33 浏览: 176
Using_the_Date.rar_c# datetime
以下是改正后的代码:
```python
import re
import calendar
import datetime
def process_date(user_input):
user_input = re.sub(r"/", "", user_input) # substitute / with space
user_input = re.sub(r"-", "", user_input) # substitute - with space
return user_input
def find_day(date):
born = datetime.datetime.strptime(date, "%d%m%Y").weekday() # remove extra space and fix typo
return calendar.day_name[born] # fix typo
# To get the input from the user
# User may type 1/2/1999 or 1-2-1999
user_input = input("Enter date: ")
date = process_date(user_input)
print("Day on " + user_input + " is " + find_day(date))
```
改正的错误包括:
- 第10行的 `weekdayO` 应该是 `weekday`。
- 第13行的 `day _name` 应该是 `day_name`。
- 第17行缺少 `input` 函数。
- 第18行的 `date =process_date(user_input) ` 应该是 `date = process_date(user_input)`(缺少空格)。
- 第19行的 `user_input` 应该是 `date`(因为 `date` 是经过处理后的日期字符串,`user_input` 是用户输入的原始字符串)。
阅读全文