A line break can be done
by putting double space
at the end of the line
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import urllib.request | |
| import json | |
| book_ISBN = "9780307277671" | |
| google_api = "https://www.googleapis.com/books/v1/volumes?q=isbn:" | |
| with urllib.request.urlopen(google_api + book_ISBN) as f: | |
| text = f.read() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| input = int(input("Enter your value: ")) | |
| final = '' | |
| for i in range(1, input + 1): | |
| for j in range(input, 0, -1): | |
| final += ' ' if (j < i) else str(j) | |
| for j in range(2, input + 1): | |
| final += ' ' if (j < i) else str(j) | |
| final += '\n' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def dump(obj): | |
| for attr in dir(obj): | |
| print("obj.%s = %r" % (attr, getattr(obj, attr))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .controls-container | |
| h3#headline Insert Names Here | |
| small#subheader (separated by commas or new lines) | |
| span#counter | |
| textarea#names(rows="10", cols="40"). | |
| Ben, David, Declan, Housam, Jeongtae, Kevin, Ming, Robin | |
| small#counter | |
| button#spin Spin The Wheel | |
| button#remove Remove Winner | |
| .container |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "emojis": [ | |
| { | |
| "category": "smileys_people", | |
| "shortcode": ":joy:", | |
| "keywords": "happy silly funny smiley smileys cry crying weeping weep sob sobbing tear tears bawling laugh laughing lol rofl lmao lmfao hilarious ha haha laugh laughing lol rofl lmao lmfao hilarious ha haha emotion emotions emotional emotion emotions emotional sarcastic sarcasm sarcastic sarcasm", | |
| "data-clipboard-text": "😂", | |
| "data-emoji": "😂", | |
| "title": "Face with Tears of Joy", | |
| "#text": "😂" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Knowledge is power | |
| ------------------ | |
| A [Pen](https://codepen.io/housamz/pen/rggZJr) by [Housamz](https://codepen.io/housamz) on [CodePen](https://codepen.io). | |
| [License](https://codepen.io/housamz/pen/rggZJr/license). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %(#(#%####(/% | |
| (#%%%%%%%%%### | |
| ((###(((/////(#( | |
| %((((((/(////(#( | |
| %((###(((((((((( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Actors": [ | |
| "Jennifer Aniston", | |
| "Courteney Cox", | |
| "Lisa Kudrow", | |
| "Matt LeBlanc", | |
| "Matthew Perry", | |
| "David Schwimmer" | |
| ], | |
| "Awards": "Won 6 Primetime Emmys. 78 wins & 231 nominations total", |
OlderNewer