์นดํ…Œ๊ณ ๋ฆฌ ์—†์Œ

Python ๊ณต๋ถ€ํ•˜๊ธฐ | hello world ์ถœ๋ ฅํ•˜๊ธฐ

grasinnong 2023. 4. 28. 23:36

 

 

Python ์‹œ์ž‘ํ•˜๊ธฐ 

 

1. ์„ค์น˜ 

https://python.land/python-tutorial

 

Python Tutorial For Beginners: Learn Python

Learn to program with this free Python tutorial for beginners. It's easy to read and lets you practice with in-browser code examples.

python.land

https://phoenixnap.com/kb/how-to-install-python-3-ubuntu

 

How to Install Python 3 on Ubuntu 18.04 or 20.04 {Step-by-Step}

Learn how to install Python 3 on Ubuntu 18.04 or 20.04 using APT or from the source code. Follow this step-by-step tutorial and set up Python with ease!

phoenixnap.com

 

 

 

2. Hello world ์ถœ๋ ฅํ•˜๊ธฐ 

print("hello world");

 

 

 

3. print() : output

#print("์ถœ๋ ฅํ•˜๊ณ  ์‹ถ์€ ๊ฒƒ")

print("   /|")
print("  / |")
print(" /  |")
print("/___|")

 

print๋Š” ์–ด๋–ค ๊ฒƒ์„ ํ™”๋ฉด์— ์ถœ๋ ฅํ•˜๊ณ  ์‹ถ์„ ๋•Œ ์‚ฌ์šฉํ•œ๋‹ค. 

 

 

 

 

https://www.youtube.com/watch?v=rfscVS0vtbw