0
Hey guys how do I import a dataset using solo learn for android
2 Respuestas
0
host it somewhere and use the requests module to get it?
Examine the code below.
(The link is not working, but the file can be fetched.)
copy-paste the code below in a Sololearn Python code section to try it out.
import requests
x = requests.get('https://w3schools.com/python/demopage.htm')
print(x.text)
0
This code (not mine) uses external file in Python accessed via urllib.request.
OP by @Palomica Lass.
very nice. please upvote the code😎
https://code.sololearn.com/cVnGIXHSD1gt/?ref=app