Last active
October 24, 2017 01:03
-
-
Save marceloandriolli/036ca28bd8f337f1205ee4bcc954226a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python -tt | |
# Copyright 2010 Google Inc. | |
# Licensed under the Apache License, Version 2.0 | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# Google's Python Class | |
# http://code.google.com/edu/languages/google-python-class/ | |
# Basic string exercises | |
# Fill in the code for the functions below. main() is already set up | |
# to call the functions with a few different inputs, | |
# printing 'OK' when each function is correct. | |
# The starter code for each function includes a 'return' | |
# which is just a placeholder for your code. | |
# It's ok if you do not complete all the functions, and there | |
# are some additional functions to try in string2.py. | |
# A. donuts | |
# Given an int count of a number of donuts, return a string | |
# of the form 'Number of donuts: <count>', where <count> is the number | |
# passed in. However, if the count is 10 or more, then use the word 'many' | |
# instead of the actual count. | |
# So donuts(5) returns 'Number of donuts: 5' | |
# and donuts(23) returns 'Number of donuts: many' | |
def donuts(count): | |
# +++your code here+++ | |
if count >= 10: | |
number_of_donuts = 'many' | |
else: | |
number_of_donuts = count | |
return 'Number of donuts: {}'.format(number_of_donuts) | |
# B. both_ends | |
# Given a string s, return a string made of the first 2 | |
# and the last 2 chars of the original string, | |
# so 'spring' yields 'spng'. However, if the string length | |
# is less than 2, return instead the empty string. | |
def both_ends(s): | |
# +++your code here+++ | |
return s[:2] + s[-2:] if len(s) > 2 else '' | |
# C. fix_start | |
# Given a string s, return a string | |
# where all occurences of its first char have | |
# been changed to '*', except do not change | |
# the first char itself. | |
# e.g. 'babble' yields 'ba**le' | |
# Assume that the string is length 1 or more. | |
# Hint: s.replace(stra, strb) returns a version of string s | |
# where all instances of stra have been replaced by strb. | |
def fix_start(s): | |
# +++your code here+++ | |
if len(s) >= 1: | |
pre_replaced = s.replace(s[:1], '*') | |
fixed_start = s[:1] + pre_replaced[1:] | |
return fixed_start | |
# D. MixUp | |
# Given strings a and b, return a single string with a and b separated | |
# by a space '<a> <b>', except swap the first 2 chars of each string. | |
# e.g. | |
# 'mix', pod' -> 'pox mid' | |
# 'dog', 'dinner' -> 'dig donner' | |
# Assume a and b are length 2 or more. | |
def mix_up(a, b): | |
# +++your code here+++ | |
if len(a) >= 2 and len(b) >= 2: | |
new_a = a.replace(a[:2], b[:2]) | |
new_b = b.replace(b[:2], a[:2]) | |
return '{} {}'.format(new_a, new_b) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment