from __futre__ import print_function
This commit is contained in:
parent
a9002374b1
commit
ec252440d9
14 changed files with 49 additions and 34 deletions
|
|
@ -1,3 +1,4 @@
|
|||
from __future__ import print_function
|
||||
import json
|
||||
import re
|
||||
|
||||
|
|
@ -60,8 +61,8 @@ def get_movie_data(title, director):
|
|||
return data
|
||||
|
||||
if __name__ == '__main__':
|
||||
print get_movie_data('Alphaville', 'Jean-Luc Godard')
|
||||
print get_movie_data('Sin City', 'Roberto Rodriguez')
|
||||
print get_movie_data('Breathless', 'Jean-Luc Godard')
|
||||
print get_movie_data('Capitalism: A Love Story', 'Michael Moore')
|
||||
print get_movie_data('Film Socialisme', 'Jean-Luc Godard')
|
||||
print(get_movie_data('Alphaville', 'Jean-Luc Godard'))
|
||||
print(get_movie_data('Sin City', 'Roberto Rodriguez'))
|
||||
print(get_movie_data('Breathless', 'Jean-Luc Godard'))
|
||||
print(get_movie_data('Capitalism: A Love Story', 'Michael Moore'))
|
||||
print(get_movie_data('Film Socialisme', 'Jean-Luc Godard'))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue