企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
[TOC] # 交互操作 ## print:向标准输出对象打印输出 ~~~ >>> print(1,2,3) 1 2 3 >>> print(1,2,3,sep = '+') 1+2+3 >>> print(1,2,3,sep = '+',end = '=?') 1+2+3=? ~~~ ## input:读取用户输入值 ~~~ >>> s = input('please input your name:') please input your name:Ain >>> s 'Ain' ~~~