Display error message.

Function signature[source]

st.error(body, *, icon=None)

Parameters

body (str)

The error text to display.

icon (str or None)

An optional, keyword-only argument that specifies an emoji to use as the icon for the alert. Shortcodes are not allowed, please use a single character instead. E.g. "🚨", "🔥", "🤖", etc. Defaults to None, which means no icon is displayed.

Example

import streamlit as st

st.error('This is an error', icon="🚨")
forum

Still have questions?

Our forums are full of helpful information and Streamlit experts.

Was this page helpful?

editEdit this page on GitHub