是否可以在Qpython中进行调用



im 制作像人工智能/虚拟助手这样的 Alexa,并且已经添加了发送文本的功能,但不知道如何打电话。 我找到了一个关于如何在收到通知时发出通知的帖子,但没有实际发送通知的能力。 这在QBie中甚至可能吗? 谢谢

示例代码:

response = input("enter command: ")   
if response[1] == "call":  
*call function* (response[2])

结果:

enter command: call 123456789    
calling 123456789

您可以使用此代码进行调用。 插入带有国家/地区代码的电话号码作为响应的输入

from androidhelper import Android
droid = Android()
response=input ("Enter phone number here:")
droid.phoneCallNumber (response)

相关内容

  • 没有找到相关文章

最新更新