Notice
Recent Posts
Recent Comments
Link
할껀하고놀자
파이썬 기초 300제(12) - for p in prices 본문
728x90
for 문에 대해 배울 수있었다.
파이썬은 재밌는 언어같다.
# 121
for 변수 in ["가", "나", "다", "라"]:
print(변수) # 4번 호출
# 122
for 변수 in ["사과", "귤", "수박"]:
print(변수)
# 123
for 변수 in ["사과", "귤", "수박"]:
print(변수)
print("--")
# 124
for 변수 in ["사과", "귤", "수박"]:
print(변수)
print("--")
# 125
menu = ["김밥", "라면", "튀김"]
for data in menu:
print("오늘의 매뉴:",end="")
print(data)
# 126
portfolio = ["SK하이닉스", "삼성전자", "LG전자"]
for data in portfolio:
print(data,"보유중")
# 127
pets = ['dog', 'cat', 'parrot', 'squirrel', 'goldfish']
for p in pets:
print(p,len(p))
# 128
prices = [100, 200, 300]
for p in prices:
print(int(p+10))
# 129
prices = ["129,300", "1,000", "2,300"]
for p in prices:
p = p.replace(",","")
print(int(p))
# 130
menu = ["면라", "밥김", "김튀"]
for m in menu:
print(m[::-1])
Comments