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
{ | |
"PythonBaseExceptions": | |
{ | |
"About": "This document covers Python exceptions and assigns them a user friendly message in several languages.", | |
"ScopeOfDocument": "Python BaseExceptions, to keep this document as lean as possible, there are other documents for other exceptions.", | |
"Languages": ["English", "German"], | |
"DateOfCreation": "2019-03-25", | |
"LastUpdate": "2019-03-26", | |
"License": | |
{ |
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
# sys and its functions are only used for the autograder, setExecutionLimit is not in the standard sys-module! | |
# import sys | |
# sys.setExecutionLimit(600000) # let this take up to 10 minutes | |
import json | |
import random | |
import time | |
VOWEL_COST = 250 |
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
from urllib.request import urlopen | |
import twurl # This has a red underscore, because PyCharm doesn't like imports that have no class(es) | |
import json | |
from mm_db import mm_db | |
import mm_file | |
TWITTER_URL = 'https://api.twitter.com/1.1/friends/list.json' | |
DB_PATH = '../../databases/' | |
db = mm_db(DB_PATH + 'spider.sqlite', 'sqlite3') |
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
import sqlite3 | |
import re | |
db_path = '../databases/' | |
db = db_path + 'z_graded_emaildb_1.sqlite' | |
file_path = '../../text_files/' | |
file = file_path + 'mbox.txt' | |
count = {} | |
columns = {'org': 'Text,', 'count': 'INTEGER'} |
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
#include <cs50.h> | |
#include <stdio.h> | |
#include <math.h> | |
float change; | |
int coins = 0; | |
int input_change(void); | |
int sum_coins(int coin_value); |