P
PavlosTi
Guest
Hi all,
I am new to visual studio with python and i try to copy paste this:
x = 1
y = 2
on this:
if True:
a = 8
and that's how it's pasting:
if True:
a = 8
x = 1
y = 2 #wrong
how can i get this:
if True:
a = 8
x = 1
y = 2
Continue reading...
I am new to visual studio with python and i try to copy paste this:
x = 1
y = 2
on this:
if True:
a = 8
and that's how it's pasting:
if True:
a = 8
x = 1
y = 2 #wrong
how can i get this:
if True:
a = 8
x = 1
y = 2
Continue reading...