Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Akhil-64 authored Dec 6, 2019
1 parent 6fed24a commit a6f8ef1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions question2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ra=int(input())
list1=[]
print("enter list")
for i in range(0,ra):
list1.append(input())
print("enter string")
st=input()
list2=[]
for i in list1:
list2.append(st+i)
print(list2)

0 comments on commit a6f8ef1

Please sign in to comment.