a =5
a = a+a
# a = 10
a *=2# a = 20type(a)# int
profit =100
tax_rate =0.3
tax = profit*tax_rate
# tax = 30
strings
print('print \n a new line')# print# a new line
s ='Hello'
s[1]# e
s[1:]# ello
s[-1]# o
s[::-1]# elloh
s +' There'# Hello There
s.upper()# HELLO
s.lower()# hello
s.split('e')# ['H', 'llo']
name ='Volkan'print(f"My name is {name}.")print('My name is {}.'.format(name))print("My name is %s."%name)# My name is Volkan.