#there are different kind to make string in python i show u some of it
# Single quotes
string1 = 'Hello, World!'
string2 = 'Python is a great programming language'
# Double quotes
string3 = "Hello, World!"
string4 = "Python is a great programming language"
# Triple quotes
string5 = """
This is a multi-line string.
It can span multiple lines and include line breaks.
"""
# Single quote in a string surrounded by single quotes
string6 = 'I\'m a Python programmer'
# Double quote in a string surrounded by double quotes
string7 = "He said, \"Python is a great language!\""
# Using the format() method
name = 'John'
age = 30
string8 = 'My name is {} and I am {} years old'.format(name, age)
# Printing the strings
print(string1)
print(string2)
print(string3)
print(string4)
print(string5)
print(string6)
print(string7)
print(string8)
# Determining the data type of a string
print(type(string1)) # prints "<class 'str'>"