Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python | Set 3 (Strings, Lists, Tuples, Iterations)

# Assigning string to a variable
a = 'This is a string'
print (a)
b = "This is a string"
print (b)
c= '''This is a string'''
print (c)
 
PREVIOUS NEXT
Tagged: #Python #Set
ADD COMMENT
Topic
Name
7+3 =