0% found this document useful (0 votes)
4 views1 page

STR

Uploaded by

Rathees P G
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

STR

Uploaded by

Rathees P G
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

s = '''Project: Netconf Automation Testing (AS7712,

AS5812)
Manual and Automation testing (Nov 2018 – Mar 2020)
Client: IP infusion
Company: Wipro Limited.
Role: Senior Test Engineer
Protocols/Technologies: OSPFv2, System management features (telnet, IP
route,syslog)
Environment: Windows, Linux
Team Size: 4
'''
lines = s.split('\n')
result_dict = {}
print(lines)
for line in lines:
if ':' in line:
key, value = line.split(':', 1)
result_dict[key.strip()] = value.strip()

print(result_dict)

You might also like