Es scheint nützlich zu sein, wenn Sie Code schreiben, und es funktioniert vorerst, aber Sie wissen nicht, wie man es ordentlich schreibt
install
pip install howdoi
Verschiedene werden installiert
requirements Pygments==1.5 argparse==1.2.1 cssselect==0.7.1 lxml==3.2.4 pyquery==1.2.6 requests==2.0.1 requests-cache==0.4.4
HOWTO
% howdoi format dict python
geopoint = {'latitude':41.123,'longitude':71.091}
print('{latitude} {longitude}'.format(**geopoint))
%howdoi install homebrew
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"
%howdoi print golang
return fmt.Sprintf("at %v, %s", e.When, e.What)
%howdoi print lisp
CL-USER> (format t "~{~{~A ~}~%~}"
'((X X X) (X X X X X X) (X X X X X X X X X)))
X X X
X X X X X X
X X X X X X X X X
Es scheint, dass wenn Sie es wie die englische Grammatik anwenden, es so zurückkommt, wie es ist
cf. https://github.com/gleitz/howdoi
Recommended Posts