Init to comit it. Messy and in need of PR!
This commit is contained in:
commit
224966a158
|
@ -0,0 +1,33 @@
|
|||
|
||||
# Construct a mad lib
|
||||
class mad_lib:
|
||||
|
||||
def __init__(self, lib):
|
||||
self.text = lib
|
||||
self.text = self.text.replace('%first_name%', self.first_name())
|
||||
self.text = self.text.replace('%location%', self.location())
|
||||
self.text = self.text.replace('%whole_number%', self.whole_number())
|
||||
self.text = self.text.replace('%plural_noun%', self.plural_noun())
|
||||
|
||||
|
||||
def first_name(self):
|
||||
#return input("A first name: ")
|
||||
return input()
|
||||
|
||||
def location(self):
|
||||
#return input("A location: ")
|
||||
return input()
|
||||
|
||||
def whole_number(self):
|
||||
#return input("A whole number: ")
|
||||
return input()
|
||||
|
||||
def plural_noun(self):
|
||||
#return input("A plural noun: ")
|
||||
return input()
|
||||
|
||||
|
||||
# Construct a mad lib
|
||||
md = mad_lib('%first_name% went to %location% to buy %whole_number% different types of %plural_noun%')
|
||||
|
||||
print(md.text)
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,19 @@
|
|||
import unittest
|
||||
from unittest.mock import patch
|
||||
import mad_lib
|
||||
|
||||
|
||||
class zyBooks_Test(unittest.TestCase):
|
||||
|
||||
|
||||
|
||||
|
||||
@patch('builtins.input', return_value=['Eric', 'Chipotle', '12', 'cars'])
|
||||
def test_zyBooks(self, mock_input):
|
||||
result = mad_lib()
|
||||
|
||||
self.assertEqual(result, 6)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
|
@ -0,0 +1,19 @@
|
|||
user_int = 0
|
||||
|
||||
while user_int not in range(32, 126):
|
||||
user_int = int(input('Enter integer (32 - 126):\n'))
|
||||
|
||||
user_float = float(input('Enter float:\n'))
|
||||
|
||||
user_char = ''
|
||||
while len(user_char) != 1:
|
||||
user_char = str(input('Enter character:\n'))
|
||||
|
||||
user_string = str(input('Enter string:\n'))
|
||||
results = [user_int, user_float, user_char, user_string]
|
||||
|
||||
print(*results)
|
||||
results.reverse()
|
||||
print(*results)
|
||||
|
||||
print('{0} converted to a character is {1}'.format(user_int, chr(user_int)))
|
Loading…
Reference in New Issue