Learn practical skills, build real-world projects, and advance your career
print("hellow world!")

import jovian
jovian.commit(nb_filename="Temp.ipynb")
hellow world! [jovian] Saving notebook.. [jovian] Failed to detect notebook filename. Please provide the notebook filename (including .ipynb extension) as the "nb_filename" argument to "jovian.commit".
a= "dsf"
b = a + "sdf"
print(b)
type(b)
dsfsdf
str
a = [3, 4]
b = [1, 2]
c = a + b
c
print(c)
type(c)
[3, 4, 1, 2]
list
a = "adsf"
b = a[-4:-1]
b
'ads'
a = (1,)
type(a)
tuple