# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/o2en65a
一篇文章帶你弄懂 Python 基礎之進制和數據類型**
一、進制----1、什麼是進制?進制也就是進位計數制,是人爲定義的帶進位的計數方法(有不帶進位的計數方法,比如原始的結繩計數法,唱票時常用的 “正” 字計數法,以及類似的 tally mark 計數)。對於任何一種進制 ---X 進制,就表示每一位置上的數運算時都是逢 X 進一位。十進制是逢十進一,十六進制是逢十六進一,二進制就是逢二進一,以此類推,x 進制就是逢 x 進位。(來自百度)通俗的解釋 ⌘ Read more