the instruction how download the python and run the code make changes.
clink this link (https://www.python.org/downloads/) Download the python.
These instructions will [will lead you how to install python] on your local machine for [windows XP, 64gb].
[Installing python] requires [Download Pythone 3.9.5] to run, with [upgrade you PC with new version python]. The commands below will [upgrade OS and install the prerequisites, or do something else]
sudo apt update
sudo apt upgrade
sudo apt install package1 package2
Once installed you can run the program with the following command
python cna_demo.py
words = ["aardvark","cookies","asterisk","cowabunga","gryphon","angular","cringe"] i = 0 length = len(words) c_counter = 0 while i < length: word=(words[i]) if word[0] == "c": print(word) c_counter = c_counter + 1 i += 1
Add any additional ways to run the program below
python cna_demo.py test.txt
I appreciate Zak to show me how to install and work with python file.