Python: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 32: Line 32:
</syntaxhighlight>
</syntaxhighlight>


Conditions:
<syntaxhighlight lang='py'>
if a == 1:
  print('something')
else:
  print('something else')
</syntaxhighlight>
Loops:
<syntaxhighlight lang='py'>
while <condition>:
  code-block
while x < 5:
  x = x + 1
  print
</syntaxhighlight>


String functions:
String functions:

Revision as of 16:15, 22 May 2021

External

Internal

Subjects

Organizatorium

  • https://opensource.com/article/18/1/running-python-application-kubernetes
  • Each installation of Python may have different modules installed. Python determines the path to its modules by examining the location of the python3 executable.
  • Python environments on Mac:
    • ~/Library/ApplicationSupport/iTerm2/iterm2env/versions/*/bin/python3
    • ~/Library/ApplicationSupport/iTerm2/Scripts/YourScript/iterm2env/versions/*/bin/python3

Basic Language

Functions:

def function_name(arguments):
  <function body>

def something(a, b):
  c = a + b
  return c


String functions:

  • Concatenate strings: 'a' + 'b'
  • Concatenate strings and integers: 'a' + str(1)

TODO. Continue: https://levelup.gitconnected.com/python-for-absolute-beginners-a-quick-primer-c7db94a5d0e