本文整理汇总了Python中note.Note.text方法的典型用法代码示例。如果您正苦于以下问题:Python Note.text方法的具体用法?Python Note.text怎么用?Python Note.text使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类note.Note
的用法示例。
在下文中一共展示了Note.text方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _emit_rest
# 需要导入模块: from note import Note [as 别名]
# 或者: from note.Note import text [as 别名]
def _emit_rest(t):
note_to_emit = Note(globals.REST_NOTE)
note_to_emit.text = t
note_to_emit.duration = None
# from Michelle
if(t == ','): note_to_emit.duration = 0.25
if(t == '.'): note_to_emit.duration = 1.0
if(t == '?'): note_to_emit.duration = 1.0
if(t == '!'): note_to_emit.duration = 1.0
if(t == '-'): note_to_emit.duration = 0.25
if(t == ':'): note_to_emit.duration = 0.125
if(t == ';'): note_to_emit.duration = 0.5
# for joe: TILDEROCK
if(t == '~'): note_to_emit.duration = 0.03125
if note_to_emit.duration == None:
return None
return note_to_emit
示例2: emit_note
# 需要导入模块: from note import Note [as 别名]
# 或者: from note.Note import text [as 别名]
def emit_note(t):
if t in punctuation:
return _emit_rest(t)
fv = _word_to_fv(t)
sorted_scores = _score_notes_no_octave(fv)
note = ''
top_scores = selection.choose_top_score(sorted_scores)
if(len(top_scores) > 1):
note = random.choice(top_scores)
else:
note = top_scores[0]
note_to_emit = Note(note+str(octave.choose_octave(t)))
note_to_emit.accidental = accidental.choose_accidental(fv, note_to_emit.pitch)
note_to_emit.duration = duration.calculate_duration(t)
note_to_emit.fv = fv
note_to_emit.text = t
return note_to_emit