python create file online code example
Example 1: python ide online
#1
https://www.onlinegdb.com/online_python_compiler
#2
https://repl.it/languages/python3
Example 2: python get an online file
import urllib2 # the lib that handles the url stuff
data = urllib2.urlopen(target_url) # it's a file like object and works just like a file
for line in data: # files are iterable
print line