+ 1
How can I define variable on python ?
Can someone gimme example
6 odpowiedzi
+ 5
Do the python course, you will learn all basics there
https://www.sololearn.com/Course/Python/?ref=app
+ 3
Python is not typed language like java or c or cpp,just choose variable name then give it a value
a = 14
B = "Hello"
print(a) ===> 14
+ 2
advice = "Do the Python course"
print(advice)
+ 1
Do the python course
0
Thanks can you gimme explain how to write it on the print?
0
Here a is a variable and you need just to type it as argument to the print function print(a) טל קינסטליך