='A'이고 문자인 경우"/> ='A'이고 문자인 경우">

>백엔드 개발 >파이썬 튜토리얼 >루프, 재귀, 작업을 사용하는 Python Day-String 함수 논리

루프, 재귀, 작업을 사용하는 Python Day-String 함수 논리

Barbara Streisand
Barbara Streisand원래의
2024-12-20 22:15:10119검색

Python Day-String Functions logic using loops, Recursion, Tasks

1) 문자열 사이에 공백을 추가하려면

txt = "TodayIsFriday"
#Today is Friday
first = True
for letter in txt:
    if letter>='A' and letter<='Z':
        if first==True:
            first = False
        else:
            print(' ',end='')
    print(letter,end='')

출력:
오늘은 금요일입니다

2)문자열 사이의 공백을 제거하려면

txt = "    Today Is Friday"
#Today is Friday

for letter in txt:
    if letter==' ':
        pass
    else:
        print(letter,end='')

출력:
오늘은금요일

3) ltrim- 문자열 왼쪽 공백을 제거합니다.

#ltrim
txt = "    Today Is Friday"
#Today is Friday
alphabet = False
for letter in txt:
    if letter==' ' and alphabet == False:
        pass
    else:
        alphabet = True
        print(letter,end='')

4) rtrim- 문자열 오른쪽 공백을 제거합니다.

txt = "Today Is Friday   "
#Today is Friday
alphabet = False
i = len(txt)-1
while i>=0:
    letter = txt[i]
    if letter==' ' and alphabet == False:
        pass
    else:
        alphabet = True
        end = i
        j = 0
        while j<=end:
            print(txt[j],end='')
            j+=1
        break
    i-=1

출력:

오늘은 금요일입니다

5) 주어진 문자열에서 불필요한 공백 제거

txt = "Today          Is             Friday"
#Today is Friday
i = 0 
while i<len(txt):
    if txt[i] != ' ':
        print(txt[i],end='')
    else:
        if txt[i-1]!=' ':
            print(txt[i],end='')
    i+=1

출력:

오늘은 금요일입니다

재귀:
자신을 호출하는 함수입니다.

루핑-->반복 접근 방식.
재귀-->재귀적 접근 방식.

예:1

def display(no):
    print(no, end=' ')
    no+=1
    if no<=5:
        display(no)


display(1)

출력:

1 2 3 4 5

팩토리얼 호출을 위한 재귀 함수:

5!=5x4x3x2x1 (또는) 5x4!

4!=4x3x2x1 (또는) 4x3!

3!=3x2x1 (또는) 3x2!

2!=2x1 (또는) 2x1!

1!=1

예:2

def find_fact(no):
    if no==1:
        return 1
    return no * find_fact(no-1)

result = find_fact(5)
print(result)

출력:
120

설명:
1) find_fact(5)
5 * find_fact(4) #no-1 = 5-1 -->4를 반환합니다.

2) find_fact(4)
4 * find_fact(3) #no-1 = 4-1 -->3

을 반환합니다.

3) find_fact(3)
3 * find_fact(2) #no-1 = 3-1 -->2

를 반환합니다.

4) find_fact(2)
2 * find_fact(1) #no-1 = 2-1 -->1

을 반환합니다.

5) find_fact(1)
기본 사례: 1을 반환합니다

기본 사례: 재귀의 기본 사례는 재귀 호출을 중지하는 조건입니다.

작업:

strip()-문자열의 시작과 끝에서 모든 공백 문자(공백, 탭, 줄 바꿈)를 제거합니다.

1) 주어진 문자열의 앞뒤에 있는 불필요한 공백을 제거합니다.

txt = "    Today Is Friday   "

start = 0
end = len(txt) - 1

while start < len(txt) and end >= 0:

    i = start
    while i < len(txt) and txt[i] == ' ':
        i += 1
    start = i

    j = end
    while j >= 0 and txt[j] == ' ':
        j -= 1
    end = j
    break  

result = txt[start:end+1]
print(result)

출력:

Today Is Friday

2) 재귀 함수를 사용하여 숫자 반전:

def reverse_a_no(no,reverse = 0):
    if no==0:
        return reverse    
    rem = no%10
    reverse = (reverse*10) + rem
    no=no//10 
    return reverse_a_no(no,reverse)

no = int(input("Enter no. ")) 
reversed_no = reverse_a_no(no) 
print(reversed_no)

출력:

Enter no. 15
51

3)소수 찾기 여부:

def find_prime(no,div=2):
    if div<no: 
        if no%div == 0:
            return False
        div+=1
        return find_prime(no,div)
    else:
        return True

no=int(input("Enter the number: "))

if find_prime(no):
    print("EMIRP number")
else:
    print("not EMIRP number")

출력:

1) Enter the number: 11
   EMIRP number
2) Enter the number: 15
   not EMIRP number

4) 피보나치 찾기:

def find_fibonacci(first_num,sec_num,no):
    if first_num > no:
        return
    print(first_num, end=" ")

    find_fibonacci(sec_num,first_num+sec_num,no)      

no = int(input("Enter the number: ")) 
find_fibonacci(0,1,no)

출력:

Enter the number: 10
0 1 1 2 3 5 8 

5. 회문 찾기 여부:

def palindrome(num,count=0):
    if num == 0:
        return count
    return palindrome(num//10,count*10+num%10)

num=int(input("Enter the number:"))
result=palindrome(num)
if result==num:
    print("Palindrome")
else:
    print("Not palindrome")

출력:

Enter the number:121
Palindrome

HackerRank 계정 생성: https://www.hackerrank.com/dashboard

위 내용은 루프, 재귀, 작업을 사용하는 Python Day-String 함수 논리의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.