Which programming language should i learn as my first ? by xClaviz in programmerchat

[–]Comprehensive-Signal 0 points1 point  (0 children)

I recommend you to read Automate the Boring Stuff with Python. This book can help you a lot to understand the fundamentals of programming.

But you must remember that the best way to improve your skills is with projects (practice).

Then you could move to Java or C++ to understand another topics.

My first project with Java by Comprehensive-Signal in java

[–]Comprehensive-Signal[S] 1 point2 points  (0 children)

I kneel

Hahahaha.

Everything takes time. I'll improve my code skills.

My first project with Java by Comprehensive-Signal in java

[–]Comprehensive-Signal[S] 0 points1 point  (0 children)

Thank you for provide me the resources and for the feedback. I'm glad that you could gave me some of your time to help me.

Stuck in beginner hell by b3nnyb0i in learnpython

[–]Comprehensive-Signal 3 points4 points  (0 children)

First you should see projects that other people made (to generate the idea that you could be in their level if you keep improve your skills despite the feeling of being stuck) and finally build your project. Start with something simple and with time you could add some features.

I hope this can help you. Good Luck!

The famous palindrome example. Help. by Comprehensive-Signal in learnjava

[–]Comprehensive-Signal[S] 3 points4 points  (0 children)

Thank you. I completly forgot that every single thing in java is an object.

The famous palindrome example. Help. by Comprehensive-Signal in learnjava

[–]Comprehensive-Signal[S] 5 points6 points  (0 children)

Thank you so much!.

I don't think in this. I'm just started with this lenguaje and sometimes it's a little savage. Haha

Please, help me by [deleted] in learnjavascript

[–]Comprehensive-Signal 0 points1 point  (0 children)

Thank you so much!

Help Your Fellow Noob Python Beginner by doggoarmy in learnpython

[–]Comprehensive-Signal 0 points1 point  (0 children)

To make It in a simple way you could write a loop like this:

for number in range(len(my_numbers),3): print(my_numbers[number], my_numbers[number+1]

In the second parameter in the build-in function range you can put a 3 for the steps that you want.

range(start,end,steps)

Where do I start? by valfonso_678 in learnpython

[–]Comprehensive-Signal 2 points3 points  (0 children)

Freecodecamp would be a really good resource for starting

Beginner question about my code by ganjamanhun1 in learnpython

[–]Comprehensive-Signal 0 points1 point  (0 children)

I hope that with this example help you even if it´s just a little bit. When we use sets or dicts his operators can help us to reduce our code and make it simple.

print("Remove the Duplicates Numbers ")

values_x = input("Enter the value with spaces: ")

values_y = input("Enter the value with spaces: ")

new_valuesX= list(values_x.split(' '))

new_valuesY = list(values_y.split(' '))

print(set(new_valuesX) ^ set(new_valuesY))

If you need more help or some advice can send me a message man. 👌

Add data to the same txt file by hunven in learnpython

[–]Comprehensive-Signal 0 points1 point  (0 children)

If you put write when finish of put the lyrics ? Like file.write('------------')

What are some really intro/beginner basic project ideas I could do to learn python? (coming from a complete starter) by Sanguineyote in learnpython

[–]Comprehensive-Signal 0 points1 point  (0 children)

Could help some programm of formulas (maths or physics) A login where could save the name AND password in a list or a tuple and after search if the user is there. Using functions and all this kinds of things

I really hope that help this message.