Skip to content

Commit 66e20a8

Browse files
authored
Merge pull request USTC-Resource#2 from cclauss/patch-1
Fix a Python syntax error in polynomial.py
2 parents 1ba8b1c + 6f7bed5 commit 66e20a8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

数据结构/labs/2017/polynomial/polynomial.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,10 @@ def menu():
148148
print('8.cal val')
149149
print('9.polynomial iter')
150150
print('10.menu')
151-
primt('11.exit')
151+
print('11.exit')
152152

153153
def go():
154154
menu()
155155

156-
if __name__ = '__main__':
156+
if __name__ == '__main__':
157+
pass

0 commit comments

Comments
 (0)