Introduction

In this blog, I am going to explain about growing the appending sequence in Python. The output will be displayed in the Run Window.
Software Requirement
Python3.5.6
Simple Programming
  1. print("Welcome To C#Corner........")
  2. print("Appending list :")
  3. text1=("c#","Corner")
  4. print("Text 1 :")
  5. print(text1)
  6. text2=("techonology","Python")
  7. print("Text 2 :")
  8. print(text2)
  9. text_append=[]
  10. text_append.append(text1)
  11. text_append.append(text2)
  12. print("Append List:")
  13. print(text_append)
  14. text_extend=[]
  15. text_extend.extend(text1)
  16. text_extend.extend(text2)
  17. print("extend List:")
  18. print(text_extend)
Explanation
In this blog, I will display growing the appending sequence In Python. The output will be shown in the Run window.
Output
Output