Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
jie1
/
jie_test4
like
1
Runtime error
App
Files
Files
Community
3ea5fc0
jie_test4
/
Rfile.py
jie1
Upload Rfile.py
a266181
about 2 years ago
raw
Copy download link
history
blame
Safe
205 Bytes
def
j_reads
(
file
):
with
open
(file,
"r"
)
as
f:
contents = f.readlines()
return
contents
def
j_read
(
file
):
with
open
(file,
"r"
)
as
f:
content = f.readline()
return
content