You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
245 B
9 lines
245 B
def print_hi(name):
|
|
# 在下面的代码行中使用断点来调试脚本。
|
|
print(f'Hi, {name}') # 按 Ctrl+F8 切换断点。
|
|
|
|
|
|
# 按装订区域中的绿色按钮以运行脚本。
|
|
if __name__ == '__main__':
|
|
print_hi('PyCharm')
|
|
|
|
|