String variables in Python
In this article, we will be covering string s in Python beginners.
In Python, there are more than one way of defining string s. Lets look 3 different form of defining string in Python.
var = "Hello World"
var = """Hello World"""
Above string declarations in Python are all valid to create a string variable. Later on, we can call that variables for further use with printf to display in bash shell.