개인적인 공부/Python

day 1-2. python

karatejin 2023. 2. 20. 09:40

Example Output (예지)

When you run your program, it should print the following: (이렇게 나오게 해라)

Day 1 - String Manipulation
String Concatenation is done with the "+" sign.
e.g. print("Hello " + "world")
New lines can be created with a backslash and n.

e.g. When you hit run, there should be no errors and this is what should happen:( 에러가 안뜨게 해라)

 

틀린것을 바르게 해라

print("Day 1 - String Manipulation")
print('String Concatenation is done with the "+" sign.')
print('e.g. print("Hello " + "world")')
print("New lines can be created with a backslash and n.")