O’Reilly – Video Training
September 2012
http://www.python-course.eu/recursive_functions.php
def rec_p(i):
____new_i = p(i)
____if new_i == i:
________return i
____else:
________return rec_p(new_i)
http://www.python-course.eu/recursive_functions.php
def rec_p(i):
____new_i = p(i)
____if new_i == i:
________return i
____else:
________return rec_p(new_i)
Why No One is Using Your API
by Industry Perspectives
on December 17, 2015
Deepak Singh is the president and CTO of Adeptia.
http://www.datacenterknowledge.com/archives/2015/12/17/no-one-using-api
related:
Henry Rollins @ Reserve Channel
2013
_https://www.youtube.com/watch?v=1bHIQ5jGJ6Q
You are stopping time
How can I check if a string contains ANY letters from the alphabet?
http://stackoverflow.com/questions/9072844/how-can-i-check-if-a-string-contains-any-letters-from-the-alphabet
any(c.isalpha() for c in string_1)
https://en.wikipedia.org/wiki/Arrow_(symbol)
ASCII code
http://mathcs.emory.edu/~cheung/Courses/170/Syllabus/05/char1.html
def orc(file_name):
____file_object = open(file_name)
____while True:
________paragraph = file_object.readline()
________if paragraph == “”:
____________#print(“EOF has been reached”)
____________return file_object.close()
________else:
____________print(paragraph)
>>> orc(“temp.txt”)