Biotechnology

Engineering

Law

Constitution as the Basic Law

The Constitution of India being written constitutes the fundamental law of the land. This has several significant implications. It is under this fundamental law that all laws are made and…

Management

Professional Courses

How to Handle String in Python

String in Python my_string = ‘Hi’ print(my_string) my_string = “Hi” print(my_string) my_string = ”’Hi”’ print(my_string) # triple quotes string can extend multiple lines my_string = “””Hello, welcome to Python””” print(my_string)…