15 lines
150 B
Python
15 lines
150 B
Python
#!/usr/bin/env python3.6
|
|
|
|
name = R"Łukasz"
|
|
F"hello {name}"
|
|
B"hello"
|
|
|
|
# output
|
|
|
|
|
|
#!/usr/bin/env python3.6
|
|
|
|
name = r"Łukasz"
|
|
f"hello {name}"
|
|
b"hello"
|