print(“Bashar”)
dir(str)
help(print)
help(str.rjust) 
"Bashar".rjust(35)
input("What is your name?")
if name == "Bashar":
print(name + " is a lumberjack!")
{ }     # The placeholder
str.format()
print(" {} is a lumberjack!".format(name) )
print(" {} sleeps all night, and {} works all day".format(name, name) )
a = 1, b = 2, c = a + b
try:
print( input_string * int(count) )
except:
len(user_string)
round(num) 
bashar_list = list('Bashar')
sentence_list = my_sentence.split()
' '.join(sentence_list)
while True:
shopping_list.append(new_item)
break
continue
for item in shopping_list:
def say_hello( ):
def add_to_two(num):
return num*num