DEV/python

udemy python 부트캠프 Day-1

길포 2022. 1. 30. 23:00
728x90

udemy python 부트캠프 Day-1

print("Day 1 - Python print Function")

print("Hello world!\nHello world")

print("Hello "+ "world")

test=input("what is your name?")

print(test)

print(len(test))

print(len(input("2.what is your name? ")))


print("Welcome to the band name generator.")

city=input("Which city did you grow up in?")
pet=input("what is the name of pet?")

print(city, pet)

'DEV > python' 카테고리의 다른 글

kafka dump log 확인  (0) 2022.08.02
UDEMY PYTHON 부트캠프 DAY-2  (0) 2022.01.31