[1] 파이썬 기본 문법
1. 파이썬 언어 구조 1) 파이썬 언어 구조# This is comment name = "GilDong" age = "9" height = "180" food = ["burger", "rice", "pizza", "bulgogi"] cal = ["100.2", "89.8", "90", "55.3"] selectedFood = raw_input("select food: ") print "\n----------------------------------------" print "1. name : ", name print "2. age : ", age print "3. height : ", height i=0 for each_item in food: if(each_item == selectedFood): p..