๊ด€๋ฆฌ ๋ฉ”๋‰ด

C-log

Welcome to Python : ์‚ฌ์šฉ์ž ์ž…์ถœ๋ ฅ ๋ณธ๋ฌธ

๐Ÿ“˜Python

Welcome to Python : ์‚ฌ์šฉ์ž ์ž…์ถœ๋ ฅ

4:Bee 2023. 7. 13. 13:41
728x90

Title Code Console
์‚ฌ์šฉ์ž ์ž…์ถœ๋ ฅ
input ์‚ฌ์šฉํ•˜๊ธฐ

a
= input()
print(a)

Life is too short, you need python
Life is too short, you need python

number
= input("์ˆซ์ž๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š” : ")
print(number)
print(type(number))

์ˆซ์ž๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š” : 177
177
<class 'str'>
๋ฌธ์ž์—ด ๋„์–ด ์“ฐ๊ธฐ๋Š” ์‰ผํ‘œ

print
("Life", "is", "too", "short")

Life is too short
ํ•œ์ค„์— ๊ฒฐ๊ด ๊ฐ’ ์ถœ๋ ฅ

for
i in range(20):
    print(i, end=' ')

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

 

 

728x90
Comments