字串轉置

啊…腦袋裡python的語法還是記不得呀…
果然要有一本工具書…一個字串轉置就因為怎麼令一個矩陣來轉置都忘了。

以下參考其他人做法
def reverse(text):
    result = ""
    for idx in range(len(text) - 1, -1, -1):
        result += text[idx] #用於srting
    print result
    return result
def reverse(x):

    y = [ ]
    for n in x: 
        y.insert(0, n) #用於list

    y = "".join(y)   
    return str(y)

print reverse("text")   
 應該還可以使用.append()#用於list,來完成這個工作。

python 數字類別測試func.

1.整數測試: way 1: 利用math 模組測試 import math def is_int(x): if type(x) == int: return True else: return False way 2:利用round(),exp.:round(2.3) → 2 def is_int(x): if x == round(x): return True else: return False way 3:直接演算,取餘數 def is_int(x): if x%1 == 0: return True else: return False

2.質數測試
def is_prime(x):
    if x < 2:
        return False
    for n in range(2, x-1):
        if x % n == 0:
            return False
    else: 

        return True