Strings
This character denotes the division operator.
(/)
The result of 9 // 5
1
This/These symbol(s) denote the power operator.
(**)
this operator returns the remainder of a division operation.
(%)
This function returns a string with leading and trailing white spaces removed.
strip()
What is the value of 'x' after the following Python code has completed executing?
x = 10
for n in range(1,5):
x = x*n
print x
240