I’ve noticed a certain behavior there must be a known solution to, wanted to hear how others handle this.
Sometimes if you comment out python lines of code with triple quotes, the code inside the triple quotes will render.
I don’t see the same behavior with using the “#” symbol, code inside that never renders.
For example, if I comment out a line of code:
"""print("Hello!")"""
This shows up in the streamlit app. If I comment it out like this:
# print("Hello!")
It does not show up.