- 创建 .idea 目录和相关配置文件,设置项目结构 - 添加多个课堂成果示例代码,涵盖不同主题和功能 - 创建和配置 .gitignore 文件,忽略特定文件和目录
25 lines
431 B
Python
25 lines
431 B
Python
'''【课后作业要求】
|
||
请找出下列代码中的3处错误,并改正:
|
||
|
||
def check(s):
|
||
|
||
if "!" in s
|
||
|
||
print("字符串中含有感叹号!")
|
||
|
||
else:
|
||
|
||
print("字符串中没有感叹号!")
|
||
|
||
string = "Hello world"
|
||
|
||
check(s) '''
|
||
def check(s):
|
||
if "!" in s:
|
||
print("字符串中含有感叹号!")
|
||
else:
|
||
print("字符串中没有感叹号!")
|
||
string = "Hello world"
|
||
check(string)
|
||
|