myCountry = '대한민국' (O)
출생국가 = '대한민국' (X)
myCountry = '대한민국' (O)
MyCountry = '대한민국' (X)
customerBankAccount = '123-12-123-123123' (카멜 표기법)
customer_bank_account = '123-12-123-123123' (스네이크 표기법)
False = 'False' (예약어 이므로 변수로 사용 불가)
!@#myCountry = '대한민국' (특수문자 사용으로 인한 오류)
my Country = '대한민국' (공백 오류)
myCountry = '대한민국' (공백 오류)
1myCountry = '대한민국' (첫 글자 숫자 오류)
정수: int
실수: float
문자: str
논리형: bool
정수 <-type casting-> 문자(열)
실수 <-type casting-> 정수
논리 <-type casting-> 문자(열)빈문자 '' => 데이터 없음 => False
공백문자 ' ' => 공백 데이터 있음 => Ture
userInputData = int(input('정수형 입력: ))
userName = '슈퍼맨'
print(userName)
print('User Name : ', userName, 'User age : ', userAge)
print(f'User name : {userName}')
print('User Name : {}'.format(userName))
print('User Name : {}, User Age : {}'.format(userName, userAge))
print('나의 이름은 {0}이고, 나이는 {1}이다. {0}이름은 부모님께서 지어 주셨다.'format(userName, userAge)