-2

我的流式应用程序中出现下一个错误:

我的错误是:

类型错误:+ 不支持的操作数类型:“int”和“str”

我的代码是:

import streamlit as st

if st.button("SUBMIT"):

    calculation = 23*2

    string = "Hello"

    result= (calculation + str(string))

    st.success(result)
4

1 回答 1

0

从您的示例中编辑:

import streamlit as st

if st.button("SUBMIT"):
    calculation = 23*2
    string = "Hello"
    result = (str(calculation) + string)
    st.success(result)
于 2020-02-09T20:33:20.770 回答