Homework Introduction

Python的输出

print函数用于输出,例如:

print("hello world") #单独输出一项
print(1,2,3,4) #输出1 2 3 4,默认中间以空格分开
print(1,2,3,sep=',') #输出1,2,3,4,中间以逗号分开
print(1,2,end="") #输出1 2,2后面不换行

Problem

Status
Done
Problem
1
Open Since
2023-12-21 11:15
Deadline
2023-12-29 23:59
Extension
24 hour(s)