01 Python 기초 배우기 - (2) valueable

처어리·2024년 1월 16일

python

목록 보기
3/36
post-thumbnail

02. valueable

변수

  • 데이터를 저장하는 공간입니다.

변수 선언

  • 변수명 = 데이터
name = "손흥민"
print(name)
  • Console
age = 30
e_mail = "son@test.com"
print("이름 :", name)
print("나이 :", age)
print("E-mail :", e_mail)
print("E-mail", e_mail, sep=' : ')
  • Console

0개의 댓글