admin

Home-Octavio

About Octavio

This author has not yet filled in any details.
So far Octavio has created 82 blog entries.

Python Strings

A string is an inmutable sequence of characters.  This post covers string operations, including iteration, slicing, concatenation, comparison, string methods, and functions.   text = 'abc' letter = text[0] Iteration text = 'abc' for letter in text: print(letter) Slicing The start index is inclusive; the end index is exclusive. If the end index goes beyond

By |2020-12-31T23:05:39+00:00December 31st, 2020|Categories: Python|0 Comments

Conda Commands

Conda is a command line tool included in Anaconda that is used to manage environments, including python versions and package dependencies.  With conda you can setup multiple environments and enable them as needed.  Conda allows you to define environments and share them with others. Environments List Environments conda info --envs conda info -e Create Environment

By |2020-12-31T23:19:25+00:00December 31st, 2020|Categories: Python|0 Comments
Go to Top