本文整理汇总了Python中twelve_days.verse函数的典型用法代码示例。如果您正苦于以下问题:Python verse函数的具体用法?Python verse怎么用?Python verse使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了verse函数的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_verse4
def test_verse4(self):
expected = ("On the fourth day of Christmas my true love gave to me, "
"four Calling Birds, "
"three French Hens, "
"two Turtle Doves, "
"and a Partridge in a Pear Tree.\n")
self.assertEqual(expected, verse(4))
开发者ID:RryLee,项目名称:Exercism-Pratice-Code,代码行数:7,代码来源:twelve_days_test.py
示例2: test_verse2
def test_verse2(self):
expected = (
"On the second day of Christmas my true love gave to me, "
"two Turtle Doves, "
"and a Partridge in a Pear Tree.\n"
)
self.assertEqual(expected, verse(2))
开发者ID:oalbe,项目名称:exercism,代码行数:7,代码来源:twelve_days_test.py
示例3: test_verse3
def test_verse3(self):
expected = (
"On the third day of Christmas my true love gave to me, "
"three French Hens, "
"two Turtle Doves, "
"and a Partridge in a Pear Tree.\n"
)
self.assertEqual(expected, verse(3))
开发者ID:oalbe,项目名称:exercism,代码行数:8,代码来源:twelve_days_test.py
示例4: test_verse5
def test_verse5(self):
expected = ("On the fifth day of Christmas my true love gave to me, "
"five Gold Rings, "
"four Calling Birds, "
"three French Hens, "
"two Turtle Doves, "
"and a Partridge in a Pear Tree.\n")
self.assertEqual(verse(5), expected)
开发者ID:lilislilit,项目名称:python,代码行数:8,代码来源:twelve_days_test.py
示例5: test_verse6
def test_verse6(self):
expected = ("On the sixth day of Christmas my true love gave to me, "
"six Geese-a-Laying, "
"five Gold Rings, "
"four Calling Birds, "
"three French Hens, "
"two Turtle Doves, "
"and a Partridge in a Pear Tree.\n")
self.assertEqual(expected, verse(6))
开发者ID:RryLee,项目名称:Exercism-Pratice-Code,代码行数:9,代码来源:twelve_days_test.py
示例6: test_verse8
def test_verse8(self):
expected = ("On the eighth day of Christmas my true love gave to me, "
"eight Maids-a-Milking, "
"seven Swans-a-Swimming, "
"six Geese-a-Laying, "
"five Gold Rings, "
"four Calling Birds, "
"three French Hens, "
"two Turtle Doves, "
"and a Partridge in a Pear Tree.\n")
self.assertEqual(expected, verse(8))
开发者ID:RryLee,项目名称:Exercism-Pratice-Code,代码行数:11,代码来源:twelve_days_test.py
示例7: test_verse10
def test_verse10(self):
expected = ("On the tenth day of Christmas my true love gave to me, "
"ten Lords-a-Leaping, "
"nine Ladies Dancing, "
"eight Maids-a-Milking, "
"seven Swans-a-Swimming, "
"six Geese-a-Laying, "
"five Gold Rings, "
"four Calling Birds, "
"three French Hens, "
"two Turtle Doves, "
"and a Partridge in a Pear Tree.\n")
self.assertEqual(verse(10), expected)
开发者ID:lilislilit,项目名称:python,代码行数:13,代码来源:twelve_days_test.py
示例8: test_verse1
def test_verse1(self):
expected = "On the first day of Christmas my true love gave to me, " "a Partridge in a Pear Tree.\n"
self.assertEqual(expected, verse(1))
开发者ID:oalbe,项目名称:exercism,代码行数:3,代码来源:twelve_days_test.py
示例9: test_verse12
def test_verse12(self):
expected = "On the twelfth day of Christmas my true love gave to me, twelve Drummers Drumming, eleven Pipers Piping, ten Lords-a-Leaping, nine Ladies Dancing, eight Maids-a-Milking, seven Swans-a-Swimming, six Geese-a-Laying, five Gold Rings, four Calling Birds, three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n"
self.assertEqual(expected, verse(12))
开发者ID:TFarla,项目名称:xpython,代码行数:3,代码来源:twelve_days_test.py
示例10: test_verse9
def test_verse9(self):
expected = "On the ninth day of Christmas my true love gave to me, nine Ladies Dancing, eight Maids-a-Milking, seven Swans-a-Swimming, six Geese-a-Laying, five Gold Rings, four Calling Birds, three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n"
self.assertEqual(expected, verse(9))
开发者ID:TFarla,项目名称:xpython,代码行数:3,代码来源:twelve_days_test.py
示例11: test_verse5
def test_verse5(self):
expected = "On the fifth day of Christmas my true love gave to me, five Gold Rings, four Calling Birds, three French Hens, two Turtle Doves, and a Partridge in a Pear Tree.\n"
self.assertEqual(expected, verse(5))
开发者ID:TFarla,项目名称:xpython,代码行数:3,代码来源:twelve_days_test.py
注:本文中的twelve_days.verse函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论