Quark's Outlines: Python Literals
Overview of Python Literals
What is a literal in Python?
Let’s say you want your program to display the word hello. You write:
⛶print("hello")The value "hello" is a literal. It i...