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


Python DataBase.llegeixAppsperProveedor方法代码示例

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


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

示例1: print

# 需要导入模块: import DataBase [as 别名]
# 或者: from DataBase import llegeixAppsperProveedor [as 别名]
        result = DataBase.afegeixApp(nombre,proveedor,fecha,precio,numdesc,numpunt,punt,numcoment)
        if(result):
            print("App introducida correctamente")
        else:
            print("ha habido un error")
    if(option == "3"):
        print("Funcion no implementada")
    if(option == "4"):
        nombre = input("Que aplicacion quieres descargar?")
        DataBase.modificaApp(nombre, 4)
        print ("gracias por la descarga")
    if(option == "5"):
        nombre = input("Que aplicacion quieres comentar?")
        DataBase.modificaApp(nombre, 7)
        print ("gracias por el comentario")
    if(option =="6"):
        appVal = input("Introduce el nombre de la aplicacion")
        nuevaVal = input("Introduce tu valoración")
        Database.estrellas(appval,nuevaVal)

    if(option == "7"):
        nombreApp = input("Introduce el nombre de la aplicacion")
        DataBase.calcularingresado(nombreApp)
    if(option == "8"):
        nombreProv = input("Introduce el nombre del proveedor a mostrar")
        DataBase.llegeixAppsperProveedor(nombreProv)
    if(option == "9"):
        print("Gracias por todo, ADIOS :)")
        boolean=False
    else:
        print("Opcion equivocada")
开发者ID:kenshyn,项目名称:Examen,代码行数:33,代码来源:Main.py


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