Skip to content

Instantly share code, notes, and snippets.

@glassresistor
Created June 18, 2019 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glassresistor/5d5f0d520e257b667cbeedf0e621e033 to your computer and use it in GitHub Desktop.
Save glassresistor/5d5f0d520e257b667cbeedf0e621e033 to your computer and use it in GitHub Desktop.
(data_warehouse)
┌───=[ mikela :: debian -( 0 )-[ ~/pivot/data_warehouse ]
└──(python --version
Python 3.7.1
(data_warehouse)
┌───=[ mikela :: debian -( 0 )-[ ~/pivot/data_warehouse ]
└──(ipython
Python 3.7.1 (default, Oct 23 2018, 19:19:42)
Type 'copyright', 'credits' or 'license' for more information
IPython 7.1.1 -- An enhanced Interactive Python. Type '?' for help.
In [1]: sorted(['a','A','c'])
Out[1]: ['A', 'a', 'c']
In [2]: sorted(['a','B','c'])
Out[2]: ['B', 'a', 'c']
In [3]: exit()
(data_warehouse)
┌───=[ mikela :: debian -( 0 )-[ ~/pivot/data_warehouse ]
└──(ssh -p 64535 3.83.193.118
The authenticity of host '[3.83.193.118]:64535 ([3.83.193.118]:64535)' can't be established.
RSA key fingerprint is SHA256:b8L4eipfJGMT3WcR/F1arOapO/60MyB2c6zf1oIM+Ok.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '[3.83.193.118]:64535' (RSA) to the list of known hosts.
circleci@7d2156c29a46:~$ ipython
bash: ipython: command not found
circleci@7d2156c29a46:~$ python
Python 3.7.1 (default, Nov 16 2018, 22:26:09)
[GCC 6.3.0 20170516] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> sorted(['a','A','c'])
File "<stdin>", line 1
sorted(['a','A','c'])
^
IndentationError: unexpected indent
>>> sorted(['a','A','c'])
['A', 'a', 'c']
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment