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).
- 15:59, 14 October 2025 Davrot talk contribs created page Input, print, string, int, float (Created page with " == The goal == Questions to [mailto:davrot@uni-bremen.de David Rotermund] == Examples == === Input / Print === <syntaxhighlight lang="python">a = input() # <- test print(a) # -> test</syntaxhighlight> === String to int === <syntaxhighlight lang="python">a = int(5) print(a) # -> 5 print(type(a)) # -> <class 'int'> a = int(-5) print(a) # -> -5 print(type(a)) # -> <class 'int'> a = int("5") print(a) # -> 5 print(type(a)) # -> <class 'int'> a = int("-5") print(a)...") Tag: Visual edit