Örneğin şöyle bir kod çalıştırmak istiyorum.
list1 = ['one','two','there']
list2 = ['four','five','six']
numbers = list1 + list2
print(numbers)
print(len(numbers))
Fakat Terminalde dosya adını degisken.py olarak yazıyorum ama şöyle hata veriyor.
PS C:\Users\Asus\Desktop\Python Temelleri> degisken.py
degisken.py : The term 'degisken.py' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, o
r if a path was included, verify that the path is correct and try again.
At line:1 char:1
- degisken.py
~~~~~~- + CategoryInfo : ObjectNotFound: (degisken.py:String) [], CommandNotFoundException
- + FullyQualifiedErrorId : CommandNotFoundException
Suggestion [3,General]: The command degisken.py was not found, but does exist in the current location. Windows PowerShell does not load commands from the current location by default. If you trust this command, instead type: ".\degisken.py". See "get-help about_Command_Precedence" for more details.