Sasidhar commited on
Commit
91e0a48
1 Parent(s): 2a0f31d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ code= "def f1(x): return str(x * 3)"
4
+ exec(code)
5
+ st.write(f1(3))