Currently I'm learning Python3, and I already have some experience with C. I need to shift string to get rid of two first bytes. Here's code in C:
char *a = "Hello World";
a += 2;
printf ("%s", a)
this program will output "llo World"
I was wondering if there is a way of doing such thing in Python efficiently, without copying the whole string.
