Which programming language to learn first?
Confused....😕
hence you should start with the language easy to understand
Python is always recommended programming language to learn first. Whereas in other languages you have to keep up with strict syntax rules, Python has short and easy to remember syntax., It reads like English and is simple to understand for someone who’s new to programming. This allows you to obtain a basic knowledge of coding practices without having to obsess over smaller details that are often important in other languages.
Python is emerging for web development, graphic user interfaces (GUIs), and software development. Do you know that it was used to build Instagram, YouTube, and Spotify ? It’s clearly in demand among employers in addition to having a faster onboarding.
Wait.. headphones are craze among coders
Tried these? Click on the picture and check out now at Amazon |
Suppose we need to find the sum of array elements
arr = []
arr = [12, 3, 4, 15]
ans = sum(arr)
print ('Sum of the array is ',ans)
This is as much simple compared to C or Java in just 4 lines of code.
Comments
Post a Comment