-1

我有一些 Python 代码有一个我称为 getFormatted() 的函数,它将month,date,year(逗号分隔)形式的日期转换为MM/DD/YYYY. 我想getFormatted()使用 return 语句,所以当你用print(self.bdate.getFormatted())它调用它时返回MM/DD/YYYY,但我不知道如何嵌入/s. 我能做的最好的事情是getFormatted()生成一个打印语句并通过 just 调用它self.bdate.getFormatted()

那么,有没有办法在返回语句中嵌入字符串?

4

2 回答 2

1
def getFormatted(month, day, year):
    # Your missing code here
    return "{0}/{1}/{2}".format(month, day, year)

print getFormatted(2, 2, 2012)
于 2012-12-01T00:36:40.243 回答
0

我在这里错过了什么吗?你可以退货。

def getDate():
    return "02/02/1993"

您应该可以在函数中简单地替换printreturn

于 2012-12-01T00:34:20.547 回答