Python Unit Test

import unittest class TestStringMethods(unittest.TestCa…

Read more...

Python Context Manager

File Context Manager Solving: not closing opened files….

Read more...

Enable Bluetooth Headphone on Ubuntu 16.04

Take Bose QuietComfort 35 II as an example: 1. Plug in …

Read more...

JSON

JSON: JavaScript Object Notation. JSON supports these t…

Read more...

Object-Oriented Programming

Properties: Encapsulation Inheritance Polymorphism Over…

Read more...

Jira

JIRA is most commonly used to track tasks, defects, and…

Read more...

Errors and Exceptions in Python

>>> def divide(x, y): … try: … result = x …

Read more...