0
Can the following code be simplified or shortened?
those_guys = "LFC" print("{0}{1}{2}{1}{3}".format("ma", "ko", "ro", "to " + those_guys))
1 Antwort
+ 16
print("makorokoto LFC")
those_guys = "LFC" print("{0}{1}{2}{1}{3}".format("ma", "ko", "ro", "to " + those_guys))