Python: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(41 intermediate revisions by the same user not shown)
Line 3: Line 3:


=Internal=
=Internal=
* [[Conda]]
* [[pip]]
* [[Julia]]
* [[Julia]]
* [[Jep]]
* [[Jep]]
* [[Go]]


=Subjects=
=Subjects=
* [[Python and IntelliJ IDEA#Overview|Python and IntelliJ IDEA]]
* [[Python Installation]]
* [[Python Language]]
* [[Python Language]]
** [[Python_Language_String#Overview|String]]
** [[Python_Language_List#Overview|List]], [[Python_Language_Dictionary#Overview|Dictionary]], [[Python_Language_Set#Overview|Set]]
** [[Python Language Functions#Overview|Functions]]
** [[Python_Language_Exceptions#Overview|Exceptions]]
** [[Python_Language_Modularization#Overview|Modularization]]
** [[Python_Language_OOP#Overview|Object Oriented Programming]]
* [[Python Engineering]]
* [[PyCharm]]
* [[Python on Kubernetes]]
* Simple Projects:
** [[PyCharm_Operations#Create_a_Simple.2C_Standalone_Project|With PyCharm]]
**  [[Python_Project_Layout#Setting_a_Manual_Project|Manual]]


=Organizatorium=
=Code Examples=
{{Internal|Python Code Examples|Python Code Examples}}


* https://opensource.com/article/18/1/running-python-application-kubernetes
=Python Versions=
* Each installation of Python may have different modules installed. Python determines the path to its modules by examining the location of the <code>python3</code> executable.
{{External|https://docs.python.org/3/whatsnew/}}
* Python environments on Mac:
** ~/Library/ApplicationSupport/iTerm2/iterm2env/versions/*/bin/python3
** ~/Library/ApplicationSupport/iTerm2/Scripts/YourScript/iterm2env/versions/*/bin/python3
 
====Basic Language====
String functions:
* Concatenate strings: <code>'a' + 'b'</code>
* Concatenate strings and integers: <code>'a' + str(1)</code>

Latest revision as of 21:12, 14 August 2023