Ich habe in VS Code Python installiert und wollte einen einfachen Code ausführen, aber erhalte immer einen Fehler:
Code: Alles auswählen
msg = 'Hello World'
print (msg)
Code: Alles auswählen
PS C:\Users\ich\VS Studio GIT Repository\Webpage Parser> & C:/Users/ich/AppData/Local/Microsoft/WindowsApps/python3.12.exe
Python 3.12.5 (tags/v3.12.5:ff3bc82, Aug 6 2024, 20:45:27) [MSC v.1940 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print (msg)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'msg' is not defined
>>>
Danke