本文整理汇总了Python中Console.get_float方法的典型用法代码示例。如果您正苦于以下问题:Python Console.get_float方法的具体用法?Python Console.get_float怎么用?Python Console.get_float使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Console
的用法示例。
在下文中一共展示了Console.get_float方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: add_record
# 需要导入模块: import Console [as 别名]
# 或者: from Console import get_float [as 别名]
def add_record(db):
machine_name = Console.get_string("Machine", "machine")
if not machine_name:
return
machine_memory = Console.get_integer("Memory (MB)", "memory",
minimum=0, maximum=5000)
machine_freq = Console.get_float("Frequency (GHz)", "frequency",
minimum=0, maximum=5)
input_size = Console.get_integer("Input size", "input_size", minimum=0,
maximum=5000*1024)
if not input_size:
return
exec_time = Console.get_float("Execution time (seconds)", "execution time",
minimum=0, maximum=1000000)
if not exec_time:
return
machine_id = get_and_set_machine(db, machine_name, machine_freq, machine_memory)
cursor = db.cursor()
cursor.execute("INSERT INTO records "
"(input_size, exec_time, machine_id) "
"VALUES (?, ?, ?)",
(input_size, exec_time, machine_id))
db.commit()