Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Operacoes Basicas 2

hello_world = "hello" + " " + "world"
print("hello_world =",hello_world)

hello_10 = "hello" * 10
print("10_hello =",10_hello)

a = [2,4,6,8]
b = [1,3,5,7]
print("a + b =",a + b)

list_3 = [1,2,3] * 3
print("list_3 =",list_3)

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.