本文整理匯總了Python中cjh.cli.Cli.print_header方法的典型用法代碼示例。如果您正苦於以下問題:Python Cli.print_header方法的具體用法?Python Cli.print_header怎麽用?Python Cli.print_header使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cjh.cli.Cli
的用法示例。
在下文中一共展示了Cli.print_header方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: main
# 需要導入模塊: from cjh.cli import Cli [as 別名]
# 或者: from cjh.cli.Cli import print_header [as 別名]
def main():
"""
This particular file shows a point oscillating left and right along
the x-axis.
"""
goban = Goban(size=SIZE_, sh_obj=Cli(), adjust_ssize=-8)
current_frame_no = 0
while True:
for i in range(-(goban.max_domain), goban.max_domain + 1,
int(round(D_INTERVAL))):
goban.fill('empty')
goban.plot_point(i, 0, 'white')
current_frame_no += 1
Cli.print_header('+f{}'.format(current_frame_no))
print((str(goban).rstrip())) # pylint: disable=C0325
time.sleep(T_INTERVAL)
for i in range(-(goban.max_domain - 1), (goban.max_domain),
int(round(D_INTERVAL))):
goban.fill('empty')
goban.plot_point(-i, 0, 'black')
current_frame_no += 1
Cli.print_header('+f{}'.format(current_frame_no))
print((str(goban).rstrip())) # pylint: disable=C0325
time.sleep(T_INTERVAL)
示例2: main
# 需要導入模塊: from cjh.cli import Cli [as 別名]
# 或者: from cjh.cli.Cli import print_header [as 別名]
def main():
"""
Print welcome message then get pizza size and price and output area
and unit price.
"""
Cli.print_header()
print_welcome()
while True:
diameter = set_diameter(ABBREV)
pizza = make_circle(diameter)
pizza = _set_area_units(pizza)
price = set_price()
output_results(pizza, price)