gustavo
0
Q:

shortcut python

a = 10 
b = 5
#printing a and b
print(a)
print(b)

#shortcut
a,b = 10,5
print(a)
print(b)
0

New to Communities?

Join the community