Main public logs

From Master of Neuroscience Wiki

Combined display of all available logs of Master of Neuroscience Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 10:34, 15 October 2025 Davrot talk contribs created page Basic Math Operations (Created page with "Questions to [mailto:davrot@uni-bremen.de David Rotermund] == Number is Python == In Python everything is a class. Numbers are classes as well. === Integer === <syntaxhighlight lang="python">a_number = 0​ print(type(a_number))​ # -> <class 'int'>​</syntaxhighlight> == FLOATing point number == <syntaxhighlight lang="python">a_second_number = 3.33​ print(type(a_second_number))​ # -> <class 'float'>​</syntaxhighlight> == Conversion (i.e. casts) between types...") Tag: Visual edit