本文整理汇总了Python中line.Line.text_per_command_line方法的典型用法代码示例。如果您正苦于以下问题:Python Line.text_per_command_line方法的具体用法?Python Line.text_per_command_line怎么用?Python Line.text_per_command_line使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类line.Line
的用法示例。
在下文中一共展示了Line.text_per_command_line方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: scan_book
# 需要导入模块: from line import Line [as 别名]
# 或者: from line.Line import text_per_command_line [as 别名]
def scan_book(name, from_file, output=stdout):
line_num = 0
book = Book(name)
bookdb = BookDatabase(book)
for line_string in from_file:
line_string = line_string.strip()
if line_string:
line_num += 1
if line_num not in bookdb:
line = Line(line_string, Source(book, line_num))
bookdb[line_num] = line
print('%d. %s (%d scans)' % (
line_num,
line.text_per_command_line(),
len(line.scans)
), file=output)
output.flush()
return bookdb