Question: Write your own code snippet that iterates through all characters in the sentence Python is cool!. The characters should be printed on one line and

Write your own code snippet that iterates through all characters in the sentence "Python is cool!". The characters should be printed on one line and separated by a space. You must use a for loop statement. Name your file sentence.py and upload it here. Problem 2. A For Loop (5 points) Write your own code snippet that iterates through the sequence of numbers from 1 to 10 and prints them on one line separated by a comma and a space: 1,2,3,4,5,6, 7,8,9,10. You should use a for loop statement and a range function. Name your file numbers.py and upload it here. Problem 3. A While Loop (5 points) Write your own code snippet that iterates through the sequence of numbers from 1 to 10 and prints them on one line separated by a colon: 1:2:3:4:5:6:7:8:9:10. You should use a while loop statement. Name your file nums.py and upload it here
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
