这个if语句甚至没有正常工作

时间:2017-11-15 18:24:59

标签: python string

if string in secret_word:
    print("Good!")
else:
    print("Bad...")

我试图检查一封信是否是这样的字:

如果A在Apple这个词中,那么它将返回Good!但如果不是,它将返回Bad ...

它还说它是TypeError而不是缩进错误。

1 个答案:

答案 0 :(得分:0)

这是缩进的问题。您可以在此处了解缩进:https://docs.python.org/2.0/ref/indentation.html和在网络上。要使代码正常工作,请执行以下操作:

#include <math.h>       /* pow, sqrt */
#include <iostream>     /* cin, cout */
#include <new>          /* new */
#include <string>       /* string */
#include <stdlib.h>     /* srand, rand */
#include <time.h>       /* time */

using namespace std;


void NORM(double* res, double* x, int n){
    res[0] = 0.0;
    for(int i = 0; i < n; i++){
        res[0] += pow(x[i], 2);
    }
    res[0] = sqrt(res[0]);
}

void initRand(double* x, int n){
    srand (time(NULL) * rand());
    for(int i = 0; i < n; i++){
        x[i] = (((double) rand()) / ((double) RAND_MAX));
    }
}

void createArray(double* &x, int n){
    if (n > 0){
        x = new double[n];
        initRand(x, n);
    }
}

void printArray(double* x, int n){
    if (x != NULL){
    cout<<"(\n";
    for(int i = 0; i < n; i++){
        if(i+1 == n) cout<<x[i];
        else if ((i % 5) == 0) cout<<x[i];
        else if ( ((i+1) % 5) == 0 ){
            cout<<", "<<x[i]<<"\n";
        }
        else {
            cout<<", "<<x[i];
        }
    }
    cout<<"\n)\n";
    }
    else cout<<"\nError: pointer = NULL\n";
}

unsigned long long int bin(unsigned int n, unsigned int k){
    unsigned long long res = 1;
    if(k == 0) return 1;
    else if( n >= k){
        for(unsigned long long int i = 1; i <= k; i++){
            res *= (n + 1 - i) / i;
        }
    }
    else return 0;
    return res;
}

void newArray(double** x, unsigned int v, unsigned int n){
    for(unsigned int i = 0; i < v; i++){
        double* ptr = x[i];
        createArray(ptr,n);
        x[i] = ptr;
    }
}

void experiment(double** vektorArray){
    unsigned int n = 10, v = 20;
    cout<<"Dimension n = "<<n<<"\nAnzahl Versuche v = "<<v<<endl;
    //Erstellen der Vektoren
    cout<<"Erstellen - starte\n";

    vektorArray = new double*[n];
    newArray(vektorArray, v, n);

    cout<<"Erstellen - fertig\n";

    for(unsigned int i = 0; i < v; i++){
        if(i%10 == 0) printArray(vektorArray[i], n);
    }
}
int main(int argc, char** argv){
    double** vektorArray = NULL;
    experiment(vektorArray);
    return 0;
}