본문 바로가기

카테고리 없음

파이선 기초 day 1

print("hellow world")
print("hellow world " + "thantk you")
print(900000)
print("%s 입니다." % "크루드오일")

C:\Users\alexa\miniconda3\python.exe C:\Users\alexa\PycharmProjects\programgarden\example_1.py 
hellow world
hellow world thantk you
900000
크루드오일 입니다.

Process finished with exit code 0