P_10 Variable Naming Rules in Python | Python Tutorials for Beginners

preview_player
Показать описание


*************************************************
Connect & Contact Me:

*************************************************

See Complete Playlists:

#pythonprogramming #variables #jennyslectures
Рекомендации по теме
Комментарии
Автор

1.var a=1 #invalid because of space
2.1=a #invalid because assignment property.
3.var_a=1 #valid.
4.roll no #invalid because of space.
5.id #valid.
6.s1_name #valid.
7.roll_no #valid.
8."age" #invalid because of quotes.
9.var a=1 #invalid because of space.
10.1=a #invalid because of assignment property.
11.var_a=1 #valid.

pragathi
Автор

Please mam continue the python till end. You are a great teacher

heera
Автор

Your teaching is really useful me mam please carry-on❤️‍🔥

puvipuvi
Автор

Hi Jenny Ma'am, I like the way yo teach... And most coolest thing I observed apart from teaching is when you say "till then bye-bye take care" you blink your eyes as give a big smile that's so cool 😇

durgaamarnathbudida
Автор

Tqsm maam ur teaching is really helpful to alll plz carry on till end😊

nisbakouar
Автор

Carry on the next portion Thank You!!!

bonabedada
Автор

Ma'am I m not good in speaking English but I'm proud to hear your lecture since your first video that I have seen, as a BCA student🎉

PenaoKhuman-tkeo
Автор

1.roll no # is Invalid Because of Space Not Allowed
2.id # is Valid
3.Sl_name # is Valid Because underscore Is Allowed
4. Roll_no # is Allowed Underscore Allowed
5. "age" # In Naming Variable Rules Special Character or (Symbol)is Not Allowed
6.roll_No # is Allowed
7.var a=1 # Not Allowed Because Space should not Allowed
8.1=a # Not Allowed because of can not start with Number
9.var_a = 1 # Valid

girumsisay
Автор

Thank you love from Nizamabad Hyderabad

miryalkarvivekkumar
Автор

Never give up:- पृथ्वी पर ऐसा कोई भी व्यक्ति नहीं है जिसको समस्या न हो और पृथ्वी पर ऐसी कोई समस्या नहीं है जिसका कोई समाधान न हो, मंजिल चाहे कितनी भी ऊंँची क्यों न हो, रास्ते हमेशा पैरों के नीचे ही जाते हैं 👍🏻👍🏻

priya-wehg
Автор

👉I Have Been Recommended Your Channel And InFirst Sight I Can't Decide But I Watched Complete And Then A 🤌Sense Of Confidence Burnt 🔥Out
❤️❤️Gr8 Way U Teaches Thank U Di ❤️‍🔥❤️‍🔥❤️‍🔥❤️‍🔥

sonu..
Автор

Roll no =invalid (because space cannot be used in variable name )
Id=valid
S1_name=valid
Roll_no=valid
"Age"=invalid(string cannot be a variable name)
var a=1->invalid(space in variable name)
1=a->invalid(variable are not defined like this)
Var_a=1->valid

musicworldz
Автор

Var a=1 (invalid)
1=a(invalid)
Var_a=1(valid)

Sk.human
Автор

roll no - invalid
id - valid
S1_name - valid
Roll_no - valid
"age" - invalid
var a=1 - invalid
1=a - invalid
var_a=1 valid

DasCODE
Автор

Thanks for the notes, as I am not in the habit of preparing notes.

UttamPrakash
Автор

Ot kills the way u say 'now, , , ❣️

suryafairs
Автор

Can u prefer any websites for practice programs?

sonynaragam
Автор

Mam I face this issue while running the code.
The terminal process failed to launch: A native exception occurred X during launch (Cannot create process, error code: 2).

yuvi
Автор

1. roll no ( invalid couse there is space)
2. id( invalid couse the second word doesn't start with capital)
3. Si_name ( it's written well couse it's camel case)
4. Roll_No ( it's written couse of pascal case)
5. "Age" ( it's invalid couse there's other word not allowed)
6. Var a = 1 ( invalid couse of space)
7. 1=a ( invalid couse it start with number )
8. Var_a = 1 ( as i think it's space the way you write miss jenny)
Please correct me if I'm wrong . Thanks

lilicute
Автор

roll no - Invalid because it contains a special character(space)
id - Valid
si_name - Valid(snake case)
Roll_No - Valid(snake case)
"age" - Invalid because it contains a special character(quotes)
var a - Invalid because it contains a special character(space)
1 = a - Invalid because a variable name cannot start with a number
var_a = 1 - Valid(snake case)

devSackey