Skip to content

Commit fb42fb4

Browse files
authored
删除多余的会报错的空格
1 parent 4dd2b52 commit fb42fb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

NP49.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
my_list = ['P', 'y', 't', 'h', 'o', 'n']
2-
print('Here is the original list:\n {}'.format(my_list))
2+
print('Here is the original list:\n{}'.format(my_list))
33

44
print() # 为了空行
5-
print('The number that my_list has is:\n {}'.format(len(my_list)))
5+
print('The number that my_list has is:\n{}'.format(len(my_list)))

0 commit comments

Comments
 (0)