Skip to content

Commit

Permalink
Merge pull request USTC-Resource#2 from cclauss/patch-1
Browse files Browse the repository at this point in the history
Fix a Python syntax error in polynomial.py
  • Loading branch information
heqin-zhu authored Mar 7, 2019
2 parents 1ba8b1c + 6f7bed5 commit 66e20a8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions 数据结构/labs/2017/polynomial/polynomial.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,10 @@ def menu():
print('8.cal val')
print('9.polynomial iter')
print('10.menu')
primt('11.exit')
print('11.exit')

def go():
menu()

if __name__ = '__main__':
if __name__ == '__main__':
pass

0 comments on commit 66e20a8

Please sign in to comment.