Learn practical skills, build real-world projects, and advance your career
print("hello jupyter!!")
hello jupyter!!
import jovian as jvn
jvn.commit()
[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 = "Good"
b = " Moringing"
greeting = a + b
greeting
'Good Moringing'
weather = ["sunny", "rainy", "cloudy", "windy"]

for state in weather:
    print("Today is " + state)
Today is sunny Today is rainy Today is cloudy Today is windy