Recent comments

Fred Maia
se você tivesse acreditado na minha brincadeira de dizer verdades, teria ouvidoo verdades que teimo …

Spaces
Meanwhile, my true top WPM is around 75. But one error and my WPM shoots …

AnonFP
I got this quote while practicing typing in French, but it is in English.

Yoshihiro Togashi
So true.

Wally
This thing uses energy so it is doomed to fail. I am very smart!

More

vikrantstar007's quotes

All quotes

Vikrant Meshram - Python Code
>>> def fib(n): # write Fibonacci series up to n ... """Print a Fibonacci series up to n.""" ... a, b = 0, 1 ... while a < n: ... print(a, end=' ') ... a, b = b, a+b ... print() ... >>> # Now call the function we just defined: ... fib(2000) 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597.