1. 문자열(전반)package chap_03;public class _01_String1 { public static void main(String[] args) { String s = "I live java and Python and C."; System.out.println(s); // 문자열 길이 System.out.println(s.length()); // 29 // 대소문자 변환 System.out.println(s.toUpperCase()); // 대문자로 System.out.println(s.toLowerCase()); // 소문자로 // 포함 관계 System.out.println(s.contains("java")); // 포함된다면 true System.ou..