首頁  >  文章  >  後端開發  >  Python 面試問題 - 初級到進階

Python 面試問題 - 初級到進階

王林
王林原創
2024-08-29 06:31:351017瀏覽

Python Interview Question - Beginner to Advance

1. 面試官:寫一段Python程式碼來取得輸出,如下所述。

時間:15分鐘

級別:初級

例子:

Input = "AAAABBBCCDAABBB"
Output= A4B3C2D1A2B3

可能的答案

# define a function() that takes string input and return null if string is null and returns 1st occurrences of character followed by number of occurrences and so on. 

# This function takes a string and returns processed string output. 
def str_skimmer(input_string):
    # Return null string if input is null. 
    if not input_string:
        return ""
    # Store values for 2 parameters - "Reference Character and "Count"
    prev_char=input_string[0]
    op=[]
    count=1

    for i in input_string[1:]:
        if (i==prev_char):
            count += 1 
            print(i, count, op)
        else: 
            op.append(prev_char+str(count))
            prev_char=i
            count=1
    op.append(prev_char+str(count))  
    print(op)

    return ''.join(op)
#O: A4B3C2D1A2B3

ip="AAAABBBCCDAABBB"
op= str_skimmer(ip)
print(op)

2. 面試官:待定

時間:15分鐘

級別:初級

例子:

Input = "TBD"
Output= TBD

以上是Python 面試問題 - 初級到進階的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn