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
{ | |
"af": { | |
"name": "Afghanistan", | |
"official_name": "Islamic Republic of Afghanistan", | |
"topLevelDomain": [ | |
".af" | |
], | |
"alpha2Code": "AF", | |
"alpha3Code": "AFG", | |
"cioc": "AFG", |
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
// Use inspect element to get classes of a particular element (Dont remove that "." before className you noob 🤡 ) | |
const className = document.querySelectorAll('.<CHANGE WITH THE CLASS NAME>'); | |
for (i = 0; i < className.length; i++) { | |
console.log(className[i].innerText); | |
} |
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 time | |
from random import randint | |
for i in range(1, 100): | |
print(' ') | |
space = ' ' | |
for i in range(1, 1000): | |
count = randint(1, 99) |
NewerOlder