This file contains 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
Hi |
This file contains 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
.normal { | |
font-weight: bold; | |
font-size: 2rem; | |
} | |
.click-toggle { | |
color: red; | |
} |
This file contains 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
{ | |
"name": "The Big Bang Theory", | |
"season_count": "12", | |
"episodes_count_total": "280", | |
"episodes_count_per_season": { | |
"S01": 17, | |
"S02": 23, | |
"S03": 23, | |
"S04": 24, | |
"S05": 24, |
This file contains 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
{ | |
"id": "results", | |
"children": [ | |
{ | |
"id": "0A", | |
"children": [ | |
{ | |
"id": "0B", | |
"children": [ | |
{ |
This file contains 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
{ | |
"subject_count": 9, | |
"length": 715, | |
"result_letter_count": 5, | |
"results": [ | |
{ | |
"A": 9, | |
"C": 0, | |
"B": 0, | |
"S": 0, |
This file contains 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
{ | |
"last_indexed": "2019-08-31T20:31:45.777", | |
"total_file_size": "23.685 GB", | |
"file_count": 275, | |
"files": [ | |
{ | |
"id": 1, | |
"path": "D:/Videos/10 SMARTEST AND MOST INCREDIBLE SMUGGLERS IN ALL HISTORY.mp4", | |
"size": "55.443 MB" | |
}, |
This file contains 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 stringToArray(string): | |
array = [] | |
for letter in string: | |
array.append(letter) | |
return array | |
println(stringToArray("Sahithyan")) |
This file contains 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 factorial(start): # Function to find factorial | |
numbers = list(range(1, start+1)) # Getting the list to find factorial | |
factorial = 1 # defining the factorial as 1 | |
for number in numbers: # In the list of numbers, Get numbers one by one | |
factorial *= number # and multiplying it by the factorial and save it to factorial | |
rounding = "{:0.2f}".format(factorial) # Rounding the factorial | |
print(rounding) # Outputting the factorial as rounded |