Python-Literals
Wed 12 November 2025
# created : 20250112
# https://www.scientecheasy.com/2022/09/literals-in-python.html/
# python literals
# Types of literals
# String literals
# Numeric literals
# Boolean literalsb
# Literal Collections
# single line string
sigle_line_string = 'Welcome \
to \
Scientech Easy'
print(sigle_line_string)
Welcome to Scientech Easy
multi_line_string = '''Welcome \
to \
Scientech Easy, \
Dhanbad'''
print(multi_line_string)
Welcome to Scientech Easy, Dhanbad …Category: python-basics
Read More