Instructions
Objective
Write a python homework program to implement sport printing.
Requirements and Specifications
Source Code
# Let the user enter a sport which is going to be modified
sport = input("Please enter a sport: ")
# Let the user enter an increment, this is the spot where
# we modify the sport, assume user enters 1 and above
increment = int(input("Please enter the increment: "))
# Break the sport into list of characters, make them all lower cause that's what the requirements says
sport = list(sport.lower())
# Perform the changes to the sport
next_index = increment - 1
changes = 0
while next_index < len(sport):
# Cater to letters A to Z or a to z only
if sport[next_index].isalpha():
# Flip the case
sport[next_index] = sport[next_index].upper()
changes += 1
next_index += increment
# Put the sport back as a string
sport = "".join(sport)
print(sport)
print("There were " + str(changes) +
Similar Samples
Discover our curated collection of programming assignment samples at ProgrammingHomeworkHelp.com. These examples showcase our proficiency in various programming languages and topics, offering clear, structured solutions. Whether you're navigating algorithms, data structures, or software development, our samples reflect our commitment to delivering top-notch academic assistance. Explore how our solutions can guide you towards mastering programming concepts and achieving academic success.
Python
Python
Python
Python
Python
Python
Python
Python
Python
Python
Python
Python
Python
Python
Python
Python
Python
Python
Python
Python