subject

The transform_comments function converts comments in a Python script into those usable by a C compiler. This means looking for text that begins with a hash mark (#) and replacing it with double slashes (/), which is the single-line comment indicator. For the purpose of this exercise, we'll ignore the possibility of a hash mark embedded inside of a Python command, and assume that it's only used to indicate a comment. We also want to treat repetitive hash marks (##), (###), etc., as a single comment indicator, to be replaced with just (//) and not (#/) or (1/#). Fill in the parameters of the substitution method to complete this function: 4 1 import re 2 - def transform_comments (line_of_code): 3 result = re. sub (_) return result 5 6 print(transform_comments("### Start of program")) 7 # Should be "// Start of program" 8 print(transform_comments(" number = 0 ## Initialize the variable")) 9 # Should be number = 0 // Initialize the variable" 10 print(transform_comments(" number += 1 # Increment the variable")) 11 # Should be " number += 1 // Increment the variable" 12 print(transform_comments("return(nu mber)")) 13 # Should be return(number)" Run Reset

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 04:40
Amain idea is supported, explained, or expanded on with a numbers b. a concluding statement c. details d. a topic sentence. im e paragraphs reset nex next
Answers: 2
question
Computers and Technology, 23.06.2019 11:00
How should you specify box sizes on a web page if you want the boxes to vary according to the font size of the text they contain? a. in pixels b. in inches c. as percentages d. in em units
Answers: 2
question
Computers and Technology, 24.06.2019 01:30
Hazel has just finished adding pictures to her holiday newsletter. she decides to crop an image. what is cropping an image?
Answers: 1
question
Computers and Technology, 24.06.2019 08:50
Write a program that will compute the volume of ice cream served in a cone. as you can see in the diagram below, the ice cream is served as a hemisphere of frozen deliciousness on top of a cone, which is also packed with frozen deliciousness. thus, the total volume of ice cream sold is the volume of the hemisphere plus the volume of the cone. the example shows an ice cream cone in which the hemisphere and cone have a radius of 10 inches and the cone has a height of 15 inches. your program must instead prompt for these two values, which are taken from the keyboard as integers: • the hemisphere/cone radius in inches, and
Answers: 3
You know the right answer?
The transform_comments function converts comments in a Python script into those usable by a C compil...
Questions
question
Mathematics, 20.04.2020 19:28
question
Spanish, 20.04.2020 19:29
question
Engineering, 20.04.2020 19:29
Questions on the website: 13722361