当前位置: 首页>>代码示例>>Python>>正文


Python Input.get_date方法代码示例

本文整理汇总了Python中Input.get_date方法的典型用法代码示例。如果您正苦于以下问题:Python Input.get_date方法的具体用法?Python Input.get_date怎么用?Python Input.get_date使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Input的用法示例。


在下文中一共展示了Input.get_date方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: rm_data

# 需要导入模块: import Input [as 别名]
# 或者: from Input import get_date [as 别名]
def rm_data():
    date = Input.get_date()
    if date in weather:
        del weather[date]
        Open_file.save_data(weather, Configs.get_type())            # save changes in file
        input('Press Enter to continue...')
    else:
        input('Day in diary not found. Press Enter to continue...')
开发者ID:VetalCoder,项目名称:Laba2_Zamyatin,代码行数:10,代码来源:W_diary.py

示例2: add_data

# 需要导入模块: import Input [as 别名]
# 或者: from Input import get_date [as 别名]
def add_data():
    date = Input.get_date()
    temp = Input.get_temp()
    preasure = Input.get_preasure()
    humidity = Input.get_humidity()
    wspeed = Input.get_wspeed()
    wdirect = input('Enter wind direction (eg. SW or S): ')
    prec = input('Enter precipitations (eg. Rain or Snow): ')
    tmp = {date: [temp, preasure, humidity, wspeed, wdirect, prec]}
    weather.update(tmp)                                         # rewrite data that already exsist
    Open_file.save_data(weather, Configs.get_type())                                # save changes in file
    input('Press Enter to continue...')
开发者ID:VetalCoder,项目名称:Laba2_Zamyatin,代码行数:14,代码来源:W_diary.py


注:本文中的Input.get_date方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。