๐Python
Welcome to Python : ํ๋ก๊ทธ๋จ์ ์ ์ถ๋ ฅ
4:Bee
2023. 7. 13. 13:44
728x90
- ํจ์ : https://hi-code.tistory.com/119
- ์ฌ์ฉ์ ์ ์ถ๋ ฅ : https://hi-code.tistory.com/120
- ํ์ผ ์ฝ๊ณ ์ฐ๊ธฐ : https://hi-code.tistory.com/121
- ํ๋ก๊ทธ๋จ์ ์ ์ถ๋ ฅ : https://hi-code.tistory.com/122
Title | Code | Console |
ํ๋ก๊ทธ๋จ์ ์ ์ถ๋ ฅ | ||
sys ๋ชจ๋ ์ฌ์ฉํ๊ธฐ |
import sys args = sys.argv[1:]
for i in args:
print(i)
|
๋ค์ ํ์ตํด ๋ณผ ํ์๊ฐ ์๋ค. |
import sys args = sys.argv[1:]
for i in args:
print(i.upper(), end=' ')
|
๋ค์ ํ์ตํด ๋ณผ ํ์๊ฐ ์๋ค. |
728x90