Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: CSV files
Post: RE: CSV files

No, I have an csv as input and a new one as output but now I want tobuse the output as input and then agian and agian and I want to know the 50th output for example.
PythonNoob99 Homework 3 95,048 Mar-23-2019, 09:39 PM
    Thread: CSV files
Post: CSV files

Hello everybody, I have a problem. I have a CSV file and I use this file in my program. From my output I make a new csv file but I would like to use this output again as input for 100 times. For exam...
PythonNoob99 Homework 3 95,048 Mar-23-2019, 02:26 PM
    Thread: Fibonnaci
Post: RE: Fibonnaci

(Feb-28-2019, 07:32 PM)ichabod801 Wrote: That's because 5 is a fibonacci number. You want the < on line 7 to be a <=, so that coming out of that loop the current fib number is guaranteed to be...
PythonNoob99 Homework 13 5,707 Feb-28-2019, 07:46 PM
    Thread: Fibonnaci
Post: RE: Fibonnaci

Ooh I understand!! It is working for a part. If I want the 2nd fibonacci number bigger than 4 it is giving 8. But if I give the 2nd bigger than 5 it gives also 8. position_in_fib_sequence = int(inp...
PythonNoob99 Homework 13 5,707 Feb-28-2019, 08:35 AM
    Thread: Fibonnaci
Post: RE: Fibonnaci

What is wrong with line 9? position_in_fib_sequence = int(input("Which fibonaccinumber do you want to know?")) the_number_has_to_be_bigger_than = int(input("Bigger than?")) G1 = 0 G2 = 1 while G2 &...
PythonNoob99 Homework 13 5,707 Feb-27-2019, 05:28 PM
    Thread: Fibonnaci
Post: RE: Fibonnaci

I understand your explanation, but I still have problems to translate. I'm confused by the combination of the wile and for lus. The wile lus generates the fibonacci numbers if I understand it well, a...
PythonNoob99 Homework 13 5,707 Feb-26-2019, 07:39 PM
    Thread: Fibonnaci
Post: RE: Fibonnaci

I have difficulties to translate what I want into the programming language. n = int(input("number")) n2 = int(input("number2")) G1 = 0 G2 = 1 G3 = 0 i = 0 while G3 < n: G3 = G1 + G2 G1 = G2 G...
PythonNoob99 Homework 13 5,707 Feb-26-2019, 11:43 AM
    Thread: Fibonnaci
Post: RE: Fibonnaci

(Feb-22-2019, 03:28 PM)ichabod801 Wrote: PythonNoob99 dateline='<a href="tel:1550848781">1550848781</a>' Wrote: But what if I want to know the 5th number bigger than 9 in the fibonacci ...
PythonNoob99 Homework 13 5,707 Feb-22-2019, 03:32 PM
    Thread: Fibonnaci
Post: RE: Fibonnaci

But what if I want to know the 5th number bigger than 9 in the fibonacci sequence?
PythonNoob99 Homework 13 5,707 Feb-22-2019, 03:19 PM
    Thread: Fibonnaci
Post: Fibonnaci

How do I translate this problem to Python? The nth number bigger than x in the fibonacci secuence. I already have n = int(input(“Give a number”) n2 = int(input(“Give a number”) I only learnt fo...
PythonNoob99 Homework 13 5,707 Feb-21-2019, 09:07 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020