#Strings or alphabets or -, +, *, /, ", :, ;, (, ) etc
#If there is a string then it means the value will be inside coates
a = 'Roger'
print(a, 'is my name')
# Python code to demonstrate stdev() function
# importing Statistics module
import statistics
# creating a simple data - set
sample = [1, 2, 3, 4, 5]
# Prints standard deviation
# xbar is set to default value of 1
print("Standard Deviation of sample is % s "
% (statistics.stdev(sample)))