본문 바로가기
반응형
SMALL

분류 전체보기64

Compilers: Principles, Techniques, and Tools (2) (Book) Compilers: Principles, Techniques, and Tools책 정보및 강의 정보 link :compiler: principles, techniques, & tool- Compilers: Principles, Techniques, and Tools (2)- Compilers: Principles, Techniques, and Tools (3)  What are Compilers? " Translator " 알파벳을 이해하고, 단어를 이해하고, Lexical Analysis(어휘, space ...) --> Syntax Analysis(문법,sentence 이해) --> Semantic Analysis(Amit를 여러번사용하는경우...) (Code Optimization) F.. 2025. 1. 30.
compiler: principles, techniques, & tool 강의 교재 : (ppt)CS 335A: Compiler Design CS 335A: Compiler DesignTAs: Ameya Rajgopal Loya (ameya@cse), Ayush Tulsyan (atulsyan@cse), Gopichand Kotana (gopick@cse), Manish K Bera (mkbera@iitk), Nimisha Agarwal (nimisha@cse), Pawan Patel (patelp@cse), Rahul Gupta (grahul@cse)karkare.github.io(ppt)dongjiehe.github.io/teaching/compiler/ https://dongjiehe.github.io/teaching/compiler/ dongjiehe.github.io.. 2025. 1. 30.
Python) 학습 - 기본6일차(class) [ 18_class ] # everything is object ! 모든 것이 객체다! print(10) print("hello".upper()) # -> upper("hello") # 학생의 점수를 관리하는 학사관리 프로그램. def total(a, b, c): return a + b + c def average(tot, cnt): return tot / cnt name1 = "daniel" kor1 = 10 eng1 = 20 math1 = 30 tot1 = total(kor1, eng1, math1) # kor1 + eng1 + math1 avg1 = average(tot1, 3) # tot1 / 3 print(name1, tot1, avg1) name2 = "susan" kor2 = 20 eng2 .. 2022. 12. 22.
Python) 학습 - 기본5일차(파일 입출력, 모듈) [ 15_파일 입출력 ] # 파일 열고 닫기 # open (파일명, 모드) f= open("/content/test.txt","tr") # t(text), r(read) 2022. 12. 22.
반응형
SMALL