City Pedia Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. Learn String Manipulation by Building a Cipher - Step 37 - Python...

    forum.freecodecamp.org/t/learn-string-manipulation-by...

    freeCodeCamp.org. Learn to Code — For Free. ytrkptl January 23, 2024, 9:59pm 2. When I opened this exercise. I did not modify anything and clicked on “check your solution” and it worked surprisingly. The line shown below was at the top and was already printing the result of comparing char to an empty space.

  3. Rosetta Code. Rosetta Code is a series of programming challenges to help you become a more well-rounded developer. Named after the famous Rosetta Stone, the open source website hosts hundreds of problems solved in a variety of programming languages. 12.

  4. Latest Python topics - The freeCodeCamp Forum

    forum.freecodecamp.org/c/python

    Learn Python List Comprehension by Building a Case Converter Program - Step 20. 6. 90. September 22, 2024. Learn Encapsulation by Building a Projectile Trajectory Calculator - Step 14. 17. 56. September 22, 2024. Learn the Bisection Method by Finding the Square Root of a Number - Step 10.

  5. Python Full Course - Python - The freeCodeCamp Forum

    forum.freecodecamp.org/t/python-full-course

    Python. Tyrese December 6, 2023, 7:36pm 1. Hello Everyone, I am new and I need some help taking on the #100DaysOfCode Challenge starting today. I am interesting in Python. Still learning my way around here but I will appreciate if anyone would help guide me how I can start the Python Challenge. Cheers!!

  6. Learn String Manipulation by Building a Cipher - Step 40 - Python...

    forum.freecodecamp.org/t/learn-string-manipulation-by...

    You can use either spaces or tabs for indentation, but be consistent with one. PEP 8 (Python Enhancement Proposal 8), recommend using 4 spaces for each level of indentation. Try this let see how it goes. 1 Like. im59138 December 27, 2023, 9:07am 6. you indented only the first line, indent all the lines after the else statement.

  7. Python for Everybody - Certificates - The freeCodeCamp Forum

    forum.freecodecamp.org/t/python-for-everybody-certificates/...

    I have been working through the Python for Everybody book on the free code camp site. I turned in my first project today and went to start the second and now the course is in the legacy section and the projects are not listed? Is there no longer a certificate offed for this course? If so, that is disappointing as this is my first course in Python

  8. Learn How to Work with Numbers and Strings by Implementing the...

    forum.freecodecamp.org/t/learn-how-to-work-with-numbers...

    Use a for loop to iterate over each digit in the odd_digits list. Move your print call from the previous step into the for loop, and change it to print each digit. Your code so far # User Editable Region def verify_card_number(card_number): sum_of_odd_digits = 0 card_number_reversed = card_number[::-1] for digits in odd_digits: odd_digits = card_number_reversed[::2] print(odd_digits) # User ...

  9. Learn String Manipulation by Building a Cipher - Step 13 - Python...

    forum.freecodecamp.org/t/learn-string-manipulation-by...

    Python. CodingCookee February 12, 2024, 11:33pm 1. Instructions: Call the .find () method to the ‘alphabet’ variable. Pass text [0] to the method. Type the correct code in this post. text = ‘Hello World’. shift = 3. alphabet = ‘abcdefghijklmnopqrstuvwxyz’.

  10. Python Budget App - hints and tips - The freeCodeCamp Forum

    forum.freecodecamp.org/t/python-budget-app-hints-and-tips/...

    Python. I just completed the Python Budget App, and it was quite a struggle. So I thought I’d share a few tips with you that you might find helpful. I was confused by the entire ‘percentage’ thing. Percentage of what? Turns out, you’re supposed to add the withdrawals in all categories (= 100 %), and then provide the withdrawals in one ...

  11. Learn String Manipulation by Building a Cipher - Step 40 - Python...

    forum.freecodecamp.org/t/learn-string-manipulation-by...

    add an else clause after encrypted_text += char and indent all the subsequent lines of code. The 4 lines of code after else will become part of the else statement. if char == ' ': encrypted_text += char. Indent it like this is indented to be part of if. The indentation is crucial as it is the syntax that shows those 4 lines are part of else.