리스트 값 끼워넣기 : insert(인덱스,원소)
icecream = {'탱크보이': 1200, '폴라포': 1200, '빵빠레': 1800, '월드콘': 1500, '메로나': 1000}
ice = list(icecream.keys())
print(ice)
==> ['탱크보이', '폴라포', '빵빠레', '월드콘', '메로나']
islower() 함수 => 문자의 소문자 여부 판별
소문자일 경우 True, 대문자일 경우 False
ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ
class MyClass():
var1 = 10
def hello(self):
print("hello")
myClass1 = MyClass()
print(myClass1.var1)
print(myClass1.hello())