-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathassignment_05.py
More file actions
67 lines (25 loc) · 938 Bytes
/
assignment_05.py
File metadata and controls
67 lines (25 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Assignment 5:
"""
Given 2 variables chars and word, write code to move
the data contained in the variable word in the exact middle of
the characters contained in the variable chars and save this
in a new variable called result and print it.
NOTE: chars variable can contain any even number of characters.
the len() function can be used to figure out the length of a string
Example:
---------------
chars = "<[<||>]>"
word = "mirror"
result - should contain the following string: <[<|mirror|>]>
"""
chars = "<<[]]]" # this could be a very long string with an even length.
word = "Cool"
# Expected Result Printed: <<[Cool]]]
# Your code below:
l1 = len(chars)
w1=chars[:l1//2]+word+chars[l1//2:]
print(w1)
# Solution Below:
# size = len(chars)
# idx = int(size/2) # dividing results in a float datatype.
# print(chars[:idx] + word + chars[idx:])