sindhu msaisindhu.hashnode.devยทJul 16, 2024Single line String Data and Multi line String Data Examples.Example 1: a="Java Programming language" print(a,type(a)) output: Java Programming language <class 'str'> Example 2: 1.s='Python Programming language' print(s,type(s)) output:Python Programming language <class 'str'> 2.s2="a" print(s2,type(s2)) outpu...single line str exampleComments disabledThe comments have been disabled by the author for this article.