버미다

고정 헤더 영역

글 제목

메뉴 레이어

버미다

메뉴 리스트

  • 홈
  • 태그
  • 방명록
  • 분류 전체보기 (255)
    • html, css (87)
    • 서문 (3)
    • python (125)
    • c언어 (13)
    • gpt활용 (1)
    • pymysql (17)
    • SQLD (8)
    • 업무 (1)

검색 레이어

버미다

검색 영역

컨텐츠 검색

python

  • #STRING FORMAT

    2024.07.08 by bumychoi

  • input 함수

    2024.07.08 by bumychoi

  • 파일읽기

    2024.07.05 by bumychoi

  • 파일 다중 만들기

    2024.07.05 by bumychoi

  • 리스트 스플릿

    2024.07.05 by bumychoi

  • 딕셔너리 생성

    2024.07.05 by bumychoi

  • 파일 쓰기

    2024.07.05 by bumychoi

  • 파일에서 스플릿하기

    2024.07.05 by bumychoi

#STRING FORMAT

#STRING FORMAT x=10y=0serialno =308276567n="kim"ex1 ='n=%s, s=%d,sum=%d' %(n,serialno,(x+y))print(ex1)ex2 = 'n={n},s={serialno},sum={sum}'.format(n=n,serialno=serialno,sum=x+y)print(ex2)ex3= f'n={n} s={serialno}, sum={x+y}'print(ex3)

python 2024. 7. 8. 16:25

input 함수

a=int(input("사용자 입력a:"))b=int(input("사용자 입력b:"))c=int(input("사용자 입력c:"))avg=(a+b+c)/3print(avg)# # 방법2x,y,z =input("숫자를 세계입력:").split()print((int(x)+int(y)+int(z))/3)# 방법3l = list(map(int,input("새계의 숫자를 입력:").split()))print(round(sum(l)/len(l),3))  82102/Desktop/python_basic_1.5/ex/ex28.py 사용자 입력a:10    사용자 입력b:20 사용자 입력c:30 20.0 숫자를 세계입력:10 20 30  20.0 새계의 숫자를 입력:10 20 30 20.0

python 2024. 7. 8. 15:54

파일읽기

import os#방법1def read_text_file1(file_path):    outputs=[]    for file in os.listdir(file_path):        # print(file)        if file.endswith(".txt"):            target_path=f'{file_path}//{file}'            print(target_path)        with open(target_path,"r") as f:            # print(f.read())            outputs.append(f.read().strip("\n"))    return outputsprint(read_text_file1("2.QnA//source/..

python 2024. 7. 5. 20:46

파일 다중 만들기

file_list=["A","B","C","D","E","F"]content_list=["Python","javaScript","PHP","Rust","Solidity","Assembly"]content_list2=[ ["Python","javaScript","PHP","Rust","Solidity","Assembly"],                ["Python","javaScript","PHP","Rust","Solidity","Assembly"],                ["Python","javaScript","PHP","Rust","Solidity","Assembly"],                ["Python","javaScript","PHP","Rust","Solidity","Ass..

python 2024. 7. 5. 20:00

리스트 스플릿

x=["A","B","C","D","E","F","G","H","i","J","K","L","N","M","O","P","Q","R","S","T","U","V","W","X","Y","Z"]print(len(x))#방법1def split_n_list(split_size=3):    x3=list()    for i in range(0,len(x),split_size):        # print(i,i+split_size)        x3.append(x[i:i+split_size])    return x3print("ex1 결과:",split_n_list(4))#방법2split_size=3output= [x[i:i+split_size] for i in range(0,len(x),split_size)..

python 2024. 7. 5. 19:27

딕셔너리 생성

a=["one","two","three","four"]b=[30,20,15,75]c=[5.2,7.4,3.6,4.2]dict2={}dict1={}for i in range(0,len(a)):    # print({a[i]:b[i]*c[i]})    dict1[a[i]] = b[i]*c[i]print("기본풀이",dict1)    #방법1for x,y,z in zip(a,b,c):    dict2[x] = y*zprint("방법1",dict2)#방법2print('ex2 결과:',{x:y*z for x,y,z in zip(a,b,c)})#방법3print('ex3 결과:',dict((x,y*z) for x,y,z in zip(a,b,c)))

python 2024. 7. 5. 18:48

파일 쓰기

# 파일 저장하기#방법1 def write_alphabelt1(filepath):    with open(filepath,"w") as file:        for letter in "ABCDEFGHIJKLNMOPQRSTUVWXYZ":            file.write(letter+" ")print(f'ex1 결과:{write_alphabelt1("ex//23-1.txt")}')  #방법2import string #빌트인 함수def write_alphabelt2(filepath):    with open(filepath,"w") as file:        for letter in string.ascii_uppercase:            file.write(letter+" ")print(f"..

python 2024. 7. 5. 18:08

파일에서 스플릿하기

def cnt_word1(filepath):    with open(filepath,"r") as file:        txt=file.read()    txt=txt.replace(","," ")    txt_list = txt.split(" ")    # print(txt_list)    return len(txt_list)print(f'ex1 결과 : {cnt_word1("2.QnA//source//22-1.txt")}') txt 파일The adjective "deep" in deep learning refers to the use of multiple layers in the network.  Early work showed that a linear perceptron cannot be a un..

python 2024. 7. 5. 17:33

추가 정보

인기글

최신글

페이징

이전
1 2 3 4 5 6 7 ··· 16
다음
TISTORY
버미다 © Magazine Lab
페이스북 트위터 인스타그램 유투브 메일

티스토리툴바