Python में Data Science परिचय
Hillary Green-Lerman
Lead Data Scientist, Looker

name = "Bayes"
height = 24
weight = 75.5
my_var MY_VAR से अलग है)# मान्य वैरिएबल
bayes_weight
b
bayes42
# अमान्य वैरिएबल
bayes-height
bayes!
42bayes
bayes-height = 3
File "<stdin>", line 1
bayes-height = 3
^
SyntaxError: can't assign to operator
float: पूर्णांक या दशमलव संख्या दर्शाता है
height = 24
weight = 75.5
string: टेक्स्ट दर्शाता है; इसमें अक्षर, संख्याएँ, स्पेस, और विशेष कैरेक्टर हो सकते हैं
name = 'Bayes'
breed = "Golden Retriever"
owner = DataCamp
File "<stdin>", line 1, in <module>
owner = DataCamp
NameError: name 'DataCamp' is not defined
fur_color = "blonde'
File "<stdin>", line 1
fur_color = "blonde'
^
SyntaxError: EOL while scanning string literal
name = "Bayes"
height = 24
weight = 75
print(height)
24
Python में Data Science परिचय