-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathassignment_03.py
More file actions
61 lines (23 loc) · 704 Bytes
/
assignment_03.py
File metadata and controls
61 lines (23 loc) · 704 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
# Assignment 3:
"""
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 will contain only 4 characters
Example:
---------------
chars = "<<>>"
word = "hello"
result - should contain the following string: <<hello>>
"""
chars = "[[]]"
word = "Cool"
# Expected Result Printed: [[Cool]]
# Your code below:
char= "[[]]"
word= "Cool"
result= char[:2] + word + char[2:4]
print(result)
# Solution Below:
# print(chars[:2] + word + chars[2:])