作为vscode的插件,直接使用
通义灵码-灵动指间,快码加编,你的智能编码助手
通义灵码,是一款基于通义大模型的智能编码辅助工具,提供行级/函数级实时续写、自然语言生成代码、单元测试生成、代码注释生成、代码解释、研发智能问答、异常报错排查等能力,并针对阿里云 SDK/API 的使用场景调优,为开发者带来高效、流畅的编码体验。
- 兼容 Visual Studio Code、JetBrains IDEs 等主流 IDE;
- 支持 Java、Python、Go、C/C++/C#、JavaScript、TypeScript、PHP、Ruby、Rust、Scala 等主流编程语言。
直接安装
直接提出需求,写一个计算机代码,用python,写出代码
def add(x, y):
"""加法"""
return x + y
def subtract(x, y):
"""减法"""
return x - y
def multiply(x, y):
"""乘法"""
return x * y
def divide(x, y):
"""除法(注意除数不能为0)"""
if y == 0:
return "Error: Division by zero is not allowed."
else:
return x / y
def calculator():
while True:
print("\n请选择操作:")
print("1. 加")
print("2. 减")
print("3. 乘")
print("4. 除")
print("5. 退出")
choice = input("请输入选项(1/2/3/4/5): ")
if choice not in ['1', '2', '3', '4', '5']:
print("无效输入,请重新选择!")
continue
if choice == '5':
print("退出计算器...")
break
num1 = float(input("请输入第一个数字: "))
num2 = float(input("请输入第二个数字: "))
if choice == '1':
result = add(num1, num2)
elif choice == '2':
result = subtract(num1, num2)
elif choice == '3':
result = multiply(num1, num2)
elif choice == '4':
result = divide(num1, num2)
print(f"结果是: {result}\n")
if __name__ == "__main__":
calculator()