Hi, The Rust idiom to write something on the console is: ``` println!("format {} arguments", "some"); ``` the `!` denotes a macro. Any idea how this could be done in Python?
Hi,
The Rust idiom to write something on the console is:
the
!denotes a macro.Any idea how this could be done in Python?