#Example with list L = [1, 2, 3, 4, 5, 6, 7, 8, 9] print(ascii(L.__repr__())) #same as print(L) #Example with tuples T = ("Pynerds", "Python", "Django", "Flask") print(T.__repr__()) #same as print(T) D = {1: "One", 2: "Two", 3: "Three"} print(D.__repr__())#Same as print(D)
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter