I was trying to count to 100 with a sentence in python, but got an error message.
I tried this.
num=1 while num<=100: print("stealing host brain cells" num) num=num+1
I expected to get something like this.
stealing host brain cells 1
stealing host brain cells 2
stealing host brain cells 3
ect…
New contributor
Tiko Fox is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.