Answers for "definition of strings in python"

0

strings in python

#Strings in python are surrounded by either single quotation marks, or double 
#quotation marks. for example if you type
print("python")
print('python')
#thse both are going to give the same answer which is python
python
# so this means that python suppoerts both single quotation marks and 
#double quotation marks
Posted by: Guest on December-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language