small python programming tips
2019-04-09 本文已影响0人
Galory
a = 'Hello'
b = '心情真棒'
c = 1
d = 12345678
print("This is string parameter %s and %s,and this is integer parameter %d and %d " %(a,b,c,d))
a = 'Hello'
b = '心情真棒'
c = 1
d = 12345678
print("This is string parameter %s and %s,and this is integer parameter %d and %d " %(a,b,c,d))