Strings Introduction, this lecture is very simple to learn about strings all you need to run the following commands with examples provided, how you are going to handle the python strings you will learn all..
course = ‘python for Beginners’
course = ‘python’s Course for Beginners’ // issue Interpreter will not accept here
course = “python’s Course for Beginners”
Output check: print(course)
Check with in string “” quotes
course = ‘python Course for “Beginners” ’
check output: print (course)
python Course for “Beginners”
All you need to know about standard procedure for getting output using strings of python programming language.
Now we have a requirement is like that multiple line text we need to enter like an email
For this
course = ‘’’
Hi,
This course is Python for Beginners
Thanks for your support
‘’’
print(course)
you will get the same output line wise