Python-Delimeter

Wed 12 November 2025
#  created : 20250111
#  https://www.scientecheasy.com/2022/09/reserved-keywords-in-python.html/
#  list of delimeters 
msg = 'hi jerin how are you'  # --> single quote delimeter
print(f'{msg}')
hi jerin how are you
num = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] # --> square braces delimiter
print(num)
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
fruits = ('Banana', 'Orange', 'Mango', 'Apple') # --> parenthesis delimiter
print(fruits)
('Banana', 'Orange', 'Mango', 'Apple')
emp_profile = {
    "Name" : "John",
    "Age" : 25,           # --> curly braces delimiter
    "Salary" : 50000
} 
print(emp_profile)
{'Name': 'John', 'Age': 25, 'Salary': 50000}


Score: 10

Category: python-basics