Question: explain work [15] 4. Complete the function definition: def repFile (name, s, n): Create a file named from the string name, that includes string s
explain work
[15] 4. Complete the function definition: def repFile (name, s, n): "Create a file named from the string name, that includes string s repeated the positive integer n times, and close the file. Examples: repFile ('x2p4.txt', 'hi', 3) creates the file named x2p4.txt containing the text: hihihi repFile('new.txt', 'yes', 2) creates the file named new.txt containing the text: yesyes " [15]5. Complete the function definition. Note that you do not print anything! Return the result. def teamSize (n): "Here n is a positive integer (team size). When n is 1, returm'alone'. When n is 2, return 'pair' Otherwise return 'group'. Examples teamSize (1) returns 'alone', teamSize (2) returns 'pair', andteamSize (5) returns 'group'. " [15] 6. Complete the function definition. from graphics import * import random def randomPoints (n, win) "Here n is a positive integer, and win is a GraphWin. Draw n randomly placed Points in win so all x and y coordinates could be any integers in the range 0-100, including 0 and 100. For example, if n is 4, you might draw Point(22, 79), Point(86, 0), Point(100, 55), Point(17, 90)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
