0
Python - code meaning
I've run into % sign. What does this mean?
3 Réponses
+ 3
Often modulus, unless the context is string formatting:
x = "World"
print("Hello %s" % x)
Hello World
+ 2
I hope this helps you out.
https://code.sololearn.com/cN4gPuhaXnbX/?ref=app