+ 10
Python variables [SOLVED]
Is it possible to assign an integer as a string variable? For example: 1 = “Hello World”
85 Answers
+ 45
No, a variable name is not allowed to start with a number. There are more rules: a variable name must start with a letter or an underscore, can only contain [ A-z 0-9 _ ] and is case sensitive
+ 13
Granger A variable can also start with an underscore (_) instead of text. As an example:
_1 = 1
is perfectly valid
+ 6
Thank you.
+ 6
No bro, in Python only Name of variable with letters, number but not at start, and you can use _
+ 4
vars = ["1","2"',"3"]
vars[1]=2
+ 3
No you can't assing a variable as an integer
+ 3
no but maybe eggs = 6 will do
+ 3
Zach Janzen There are some rules to follow while writing a variable name.
A variable name must start with a letter or the underscore character.
It cannot start with a number.
It can only have alpha-numeric characters and underscores.
These are case-sensitive (age, Age and AGE are three different variables).
+ 2
No , There are certain rules to declare a variable in any programming language.
*The variables should not start with numeric values.
*The variables should contain only alphabets, and numbers and underscore.
*The variables should contains spaces , hyphens etc.
*The variable name should not be same as a keyword in that language.
+ 2
In your variable name, make sure that it represents your code. To make it readable.
+ 2
No, a variable name is not allowed to start with a number. There are more rules: a variable name must start with a letter or an underscore, can only contain [ A-z 0-9 _ ] and is case sensitive
We can do like this 👇👇👇
_1="Kiibo"
Ok
+ 1
Kiibo Ghayal, thats an interesting way.
+ 1
intetesting! 𝐊𝐢𝐢𝐛𝐨 𝐆𝐡𝐚𝐲𝐚𝐥
+ 1
𝐊𝐢𝐢𝐛𝐨 𝐆𝐡𝐚𝐲𝐚𝐥 interesting!
+ 1
No, it's a rule that we can't use an integer in the first letter of a variable. if you try to assign an variable like '1 = "Hello world"', it will throw an error.
+ 1
No,variable name cannot start with integer.
+ 1
It is not possible, you can't start your variable with with numbers..
+ 1
No you can not use number for naming variables.
Rules for Python variables:
A variable name must start with a letter or the underscore character. A variable name cannot start with a number. A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _)
+ 1
No, because variable doesn't allow to start with any number.
Like, 1_variable_name ×
+ 1
no, variables can never start by a number