print(~a) in python code example
Example 1: how to print in python
print("hello world")
Example 2: how to use print in python
string_to_print = "Hello World"
print(string_to_print)
print("hello world")
string_to_print = "Hello World"
print(string_to_print)