9 Respostas
+ 6
Ok so where is the question?
"I want to ask ..." is a statement not a question.
https://www.sololearn.com/learn/courses/JUMP_LINK__&&__python__&&__JUMP_LINK-introduction
https://www.techgeekbuzz.com/tutorial/python/
+ 6
Afshu Afshu please clarify ... python is a very easy language compared to c
c variable assignments:
int a = an integer; // 'int' reserves a specific amount of memory for a whole number.
// The type is FIXED for the life of the variable 'a'.
char *b = a string; // 'char *' (or array) is used for a string of characters.
// You must manually manage the memory for this string.
python variable assignments
a = an integer # Python automatically determines 'a' is an integer (int).
b = a string # Python automatically determines 'b' is a text string (str).
In short, Python handles the bookkeeping (type and memory management) for you, which is why your simple assignment example is so much shorter and easier than the C equivalent. You only worry about what you want to do, not how the computer must store it.
+ 1
I can't understand this language I know about C language and these difference confusing me so much
+ 1
I will try to understand this
+ 1
I'd like to invite you to join our vibrant community of programmers on WhatsApp!
Our group is dedicated to helping each other with coding challenges, sharing knowledge, and learning from industry experts. Whether you're a beginner or an experienced developer, you'll find valuable resources, support, and camaraderie here.
Join us to:
- Get help with coding problems and challenges
- Share your expertise and learn from others
- Stay updated on the latest programming trends and technologies
- Connect with like-minded developers and build meaningful relationships
Click this link to join our community
https://chat.whatsapp.com/FW0nBbr3Eug3oTiL1U53gR
Looking forward to coding, learning, and growing with you!"
+ 1
But where is the question ???
+ 1
Here is the starter course in python
https://www.sololearn.com/learn/courses/python-introduction
+ 1
Here is the intermediate course in python
https://www.sololearn.com/learn/courses/python-intermediate
+ 1
Here is the developer course of python
https://www.sololearn.com/learn/courses/python-developer



