Source Code:
(back to article)
string_var = "hello" string_var2 = string_var * 3 print(string_var2) # "hellohellohello"
Result:
Report an issue