Guest User

Untitled

a guest
Jun 24th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. /Program Files
  2. /Python
  3. /2.6
  4. python.exe and everything else
  5. /3.0
  6. python.exe and everything else
  7.  
  8. print "platform.name="+ "Jython " + version
  9.  
  10. print("platform.name="+ "Jython " + version)
  11.  
  12. def fib(n): # write Fibonacci series up to n
  13. """Print a Fibonacci series up to n."""
  14. a, b = 0, 1
  15. while b < n:
  16. print (b, end=' ')
  17. a, b = b, a+b
  18.  
  19. fib(2000)
  20.  
  21. Internal parser error
  22. "no viable alternative at input'=' "
Add Comment
Please, Sign In to add comment