小编Lon*_*rts的帖子

类型错误:“str”对象不可调用

name = raw_input("Welcome soldier. What is your name? ")
print('Ok,', name, ' we need your help.')
print("Do you want to help us? (Yes/No) ")
ans = raw_input().lower()

while True:
    ans = raw_input().lower()("This is one of those times when only Yes/No will do!" "\n"  "So what will it be? Yes? No?")

    ans = raw_input().lower()
    if ans() == 'yes' or 'no':
        break
    if ans == "yes":
        print ("Good!")
    elif ans == "no":
        print("I guess I was wrong about you..." '\n' "Game over.") …
Run Code Online (Sandbox Code Playgroud)

python string while-loop

5
推荐指数
1
解决办法
4万
查看次数

关于字符串和函数的问题.

我正在玩一些C++,只是为了好玩.我刚刚开始使用函数,我想根据用户是否尝试乘以1来制作一个if语句,该语句将转到不同的函数.

这是代码:

//Test för att se om jag förstår funktioner

#include <iostream>
#include <string>

using namespace std; 

//Deklarerar variblar som jag ska använda
int a,b,x;
string s;

//Skriver ut funktionen för att multiplicera
int multi(int a, int b) 
{
  x = a * b; 

  return x;
}

int ans(void)  
{
  using std::string; 

  string s = "Lol";

  return s; 
}

//Samlar in värde från användaren, skickar den till funtktionen "multi" som multiplicerar den, sedan skickar den tillbaks den till main via …
Run Code Online (Sandbox Code Playgroud)

c++ string

3
推荐指数
1
解决办法
184
查看次数

在if语句中调用时,不会在函数中写出字符串.

下面的代码编译时没有任何错误,但是当我尝试做2*1(或任何其他不是1的数字)时,ans函数中的字符串"Inte ok"没有写在屏幕上,程序就退出了.这是为什么?

 //Test för att se om jag förstår funktioner

#include <iostream>
#include <string>

using namespace std; 

//Deklarerar variblar som jag ska använda
int a,b,x;
string s, ab;

//Skriver ut funktionen för att multiplicera
int multi(int a, int b) 
{
  x = a * b; 

  return x;
}

string ans()  
{
  using std::string; 

  string s = "Inte ok";

  ab = s;

  return ab; 
}

//Samlar in värde från användaren, skickar den till funtktionen "multi" som multiplicerar den, sedan skickar den …
Run Code Online (Sandbox Code Playgroud)

c++ string if-statement

2
推荐指数
1
解决办法
82
查看次数

未在范围内声明,初学者蜗牛赛车游戏

好吧,我用Google搜索并在此网站上找到了一些关于此问题的答案,但答案对我来说太不一样了,我真的对它们做了什么,所以我再次提出要求并希望最好.

我在g ++中遇到以下错误;

snailrace.cpp: In function ‘int race(int, int)’:

snailrace.cpp:101:21: error: ‘rand’ was not declared in this scope


snailrace.cpp:123:3: error: a function-definition is not allowed here before ‘{’ token


snailrace.cpp:128:3: error: expected ‘}’ at end of input
Run Code Online (Sandbox Code Playgroud)

我想我能解决所有问题,除了snailrace.cpp:101:21: error: ‘rand’ was not declared in this scope我尝试过的一切,它都没有帮助!我该如何解决!?这让我疯了.谢谢!

//The snail race.

#include <iostream>
#include <ctime>

//Function declaration.
int race(int,int); 
void race(void);
int menu(void);
int placebet(int);
void init(void);

//Variables 
int money = 200; 

//the main function
int main(void)
{
  using std::cout; …
Run Code Online (Sandbox Code Playgroud)

c++

1
推荐指数
1
解决办法
1万
查看次数

使用"re.sub"剥离python中的代码

我读到了这一点: 从Python中的字符串中删除除字母数字字符之外的所有内容

而这: Python:除了空格和字母数字之外的所有内容

不太明白,但我尝试了一下我自己的代码,现在看起来像这样:

import re

decrypt = str(open("crypt.txt"))

crypt = re.sub(r'([^\s\w]|_)+', '', decrypt)

print(crypt)
Run Code Online (Sandbox Code Playgroud)

当我运行脚本时它回来了这个答案: C:\ Users\Adrian\Desktop\python> python tick.py ioTextIOWrapper namecrypttxt moder encodingcp1252

我试图从文档中删除所有额外的代码,只需保留数字和字母,在文档中可以找到以下文本:http://pastebin.com/Hj3SjhxC

我正在尝试解决这里的任务:http: //www.pythonchallenge.com/pc/def/ocr.html

任何人都知道"ioTextIOWrapper namecrypttxt moder encodingcp1252"是什么意思?我应该如何格式化代码以正确删除除字母和数字之外的所有内容?

诚挚

python regex string formatting

1
推荐指数
1
解决办法
180
查看次数

int到byte,"无法解析为变量".怎么了?

这有什么问题;

public class cast {

    public static void main(String args[]){
        double x, y; 
        int i;
        char c; 

        x = 10.0; 
        y = 3.0; 

        i = (int) (x / y); 
        System.out.println("Integer outcome of x / y = " + i); 

        i = 100; //Assaigning new value to i. 

        b = (byte) i;  
        System.out.println("The value of i is: " + b); 

    }

}
Run Code Online (Sandbox Code Playgroud)

它给我以下错误信息; b无法解析为变量.

虽然我完全按照他们在书中所做的那样做(我想,重读这本书的指令就像五次......)

java int byte

0
推荐指数
1
解决办法
1115
查看次数

标签 统计

string ×4

c++ ×3

python ×2

byte ×1

formatting ×1

if-statement ×1

int ×1

java ×1

regex ×1

while-loop ×1