(The following links jump down to the various topics in these notes.)
Data serialization is a term for the process of converting variables and data structures into a kind of format that can be imported and exported from your code. It is called serialization because all the various variables and data that you might be using are serialized, which is to say, converted into a serial
f = open("FILENAME") file_contents = f.read()
f = open("FILENAME","r")
f = open("FILENAME","w") f.write("Hello")
import json
s = "[ 10, 20, 30 ]" json.loads(s) print( len(s) )
import json f = open("data/data.json","r") file_contents = f.read() print(file_contents) data = json.loads(file_contents) print(data) def setup(): size(800,800) def draw(): background(255) i = 0 while i < len(data): d = data[i] fill( d["r"], d["g"], d["b"] ) ellipse( d["x"], d["y"], 50,50 ) i = i + 1