您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關python面試題案例的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
題目一:python中String類型和unicode什么關系
整理答案:string是字節串,而unicode是一個統一的字符集,utf-8是它的一種存儲實現形式,string可為utf-8編碼,也可編碼為GBK等各種編碼格式
題目二:不用set集合方法,去除列表中的重復元素
方法一:
List=['b','b','d','b','c','a','a'] print "the list is:" , List if List: List.sort() last = List[-1] for i in range(len(List)-2, -1, -1): if last==List[i]: del List[i] else: last=List[i] print "after deleting the repeated element the list is : " , List
方法二:使用列表綜合
l1 = ['b','c','d','b','c','a','a'] l2 = [] [l2.append(i) for i in l1 if not i in l2] print l2 題目三:實現斐波那契(Fibonacci)數列 方法一:遞歸 def fibonacci2(n): if n == 1 or n == 2: return 1 else: return fibonacci2(n-1) + fibonacci2(n-2)
方法二:迭代
def fibonacci(n): if n == 1 or n == 2: return 1 nPre = 1 nLast = 1 nResult = 0 i = 2 while i < n: nResult = nPre + nLast nPre = nLast nLast = nResult i += 1 return nResult print fibonacci(5)
感謝各位的閱讀!關于python面試題案例就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。