This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In [7]: d = {'test': 'This works!'} | |
In [8]: d['test'] | |
Out[8]: 'This works!' | |
In [9]: d['error'] | |
--------------------------------------------------------------------------- | |
KeyError Traceback (most recent call last) | |
<ipython-input-9-87842e67411c> in <module>() | |
----> 1 d['error'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ismaelvc@toybox ~/D/julia-es (setup)> sphinx-quickstart | |
Welcome to the Sphinx 1.2.1 quickstart utility. | |
Please enter values for the following settings (just press Enter to | |
accept a default value, if one is given in brackets). | |
Enter the root path for documentation. | |
> Root path for the documentation [.]: /home/ismaelvc/Devel/julia/doc/ | |
Error: an existing conf.py has been found in the selected root path. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Using python3 annotations and example usage with doctest.testmod: | |
def pyramid(symbol:str='*', num:int=7) -> None: | |
""" | |
Print a pyramid. | |
>>> pyramid() | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ismaelvc@toybox ~/Devel/julia (git)-[master] % export LC_ALL=C | |
ismaelvc@toybox ~/Devel/julia (git)-[master] % make clean | |
make[1]: Entering directory '/home/ismaelvc/Devel/julia/base' | |
rm -f *# *~ | |
rm -f pcre_h.jl | |
rm -f errno_h.jl | |
rm -f build_h.jl | |
rm -f build_h.jl.phony | |
rm -f fenv_constants.jl | |
rm -f uv_constants.jl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> ERROR! = "Can't do that!" | |
File "<stdin>", line 1 | |
ERROR! = "Can't do that!" | |
^ | |
SyntaxError: invalid syntax |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"metadata": { | |
"language": "Julia", | |
"name": "" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.