## Raj Sunderraman
## rsunderraman
## CSC 1301 Prog 1
##
x = 6
print(x)
6
x = x + 1
print(x)
7
True
True
False
False
Boolean operations: and, or, not
Numeric operations: +, -, *, /, //, %
7/3
2.3333333333333335
7//3 #integer division floor function
2
7%3
1
string operations: ????
Input In [13] x{6} ^ SyntaxError: invalid syntax