DID YOU KNOW:
Brainfuck is a real programming language that uses just 8 symbols. It looks completely unreadable, but it is still powerful enough to build programs.
Hello world in Brainfuck:
++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.
What I learned:
Nesting Lists
Dictionaries
Comment the answer:
data = [{"a": 1}, {"b": 2}]
print(data[1]["b"])
What I will be able to build tomorrow:
The link is from Dr. Angela Yu's demo project.