기초2 [ Python ] 진짜 진짜 기본 언젠가 볼 전공필기 시험을 위해, 내가 시험 전에 참고로 보기위한 간단한 정리 ( 참고로 나는 파이썬을 써본 경험이 거의 없음🥲 ) 1. 파이썬의 주석은 #으로 표시 # 주석 주석 주석 2. 파이썬의 input() 함수는 문자 형식으로 값을 받음, 숫자를 입력받아 계산하기 위해서는 타입변환이 필요함 a = input("숫자를 입력 : ") # 1입력 # 숫자를 입력 : 1 print(type(a)) # str a = int(a) # 문자 타입의 a를 숫자로 변환 print(type(a)) # int 3. 콤마를 이용해 여러 값을 출력할 수 있음, 구분자(sep) 사용 가능 print(111, "안녕", 345) # 구분자가 따로 지정되어있지 않다면 공백 기준으로 구분 # 111 안녕 345 print(1.. 2021. 3. 11. [Thymeleaf] 하나부터 열까지 ( Part 1 ) + 참고 : Thymeleaf Document https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#standard-expression-syntax Tutorial: Using Thymeleaf 1 Introducing Thymeleaf 1.1 What is Thymeleaf? Thymeleaf is a modern server-side Java template engine for both web and standalone environments, capable of processing HTML, XML, JavaScript, CSS and even plain text. The main goal of Thymeleaf is to provide .. 2020. 2. 17. 이전 1 다음