0
How to do the double string assignment
cannot get it to work
3 Respostas
+ 7
is it this what you mean:
a, b = 'hello', 'world'
print(a, b)
+ 2
ya thanks I got it
+ 1
Something like this?
x,y="thing1","thing2"
print(f"x={x} and y={y}")
cannot get it to work