Python String Example


Program
a = "Welcome to Python" #for single line we can use '' or "" print(a) a = '''Welcome to Fresherbell''' #for multi line we can use ''' or """ print(a)
Input
Output