본문 바로가기

ONLINE COURSES/PYTHON5

부스트코스 || count // tuple, sort, list comprehension 0. Counting Pattern x = { 'a' :50, 'b' : 40, 'c': 60} for aaa,bbb in x.items() : #item's' print(aaa,bbb) line = ' the the the i i i general pattetn to count the the words hehe' words = line.split() print(words) counts = dict() for word in words: counts[word] = counts.get(word,0) +1 print(counts) bigcount = None bigword = None for word,count in counts.items(): if bigcount is None or count > bigco.. 2021. 5. 23.
부스트코스 || 평균구하기 // split // Dictionary 0. 파이썬으로 평균을 구하는 두가지 방법 stuff = list() stuff.append('book') stuff.append(99) print(stuff) stuff.append('cookeie') print(stuff) #way1 total = 0 count = 0 while True: inp = input("Enter a number:") if inp == 'done' : break value = float(inp) total = total + value count = count +1 average = total / count print("average :", average) #way2 numlist = list() while True: inp = input("Enter a number:") i.. 2021. 5. 23.
부스트코스 || loop & iteration n = 5 while n >0: print(n) n=n-1 print("blast off") print(n) for x in [5,4,3,2,1]: print(x) print('blast off!') friends = ['joseph', 'glenn', 'sally'] for friend in friends : print('happy newyear, ', friend) a = input("type hours") b = input("type rates") fa =float(a) fb = float(b) largest_so_far = -1 print("before: ", largest_so_far) for the_num in [9,41,12,3,74,15]: if the_num > largest_so_far.. 2021. 5. 23.
파이썬 입문 || class & object // package & module // is & else // try & except 0. class & object class person: def __init__(self, name, age): self.name = name self.age = age def say_hi(self,to_name): print("안녕 " + to_name + ", 나는" + self.name + "야") def introduce(self): print("my name is " + self.name + ", i am " + str(self.age) + " years old") woonie = person("woonie", 30) jenny = person("jenny", 20) kara = person("kara", 5) woonie.say_hi("철수") jenny.say_hi("영희") kara.say.. 2021. 5. 18.
파이썬 입문 || for & while loop // break & continue // list // tuple & dictionary 0. for & while loop print('') print('철수 : 안녕 영희야 뭐해') print('영희 : 그냥 있어') #for 문. range(n) n번만큼 아래의 코드를 반복함 i는 번호임. 0부터 시작함에 주의 print('') for i in range(3): print(i) print('철수 : 안녕 영희야 뭐해') print('영희 : 그냥 있어') # while 문 - 조건을 달 수 있다는 점에서 if문과 차이있음 print('') i = 0 while i < 3: print(i) print('철수 : 안녕 영희야 뭐해') print('영희 : 그냥 있어') i = i + 1 1. break & continue # while True 일 경우 무한반복한다. "T"대문자 써야함에 .. 2021. 5. 17.