无法让has_key方法在python中工作

时间:2017-07-10 01:58:49

标签: python

我不明白为什么我在以下内容中出现属性错误:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using Xamarin.Forms;

namespace mySolution
{
    public partial class App : Application
    {
        public App ()
        {
            InitializeComponent();

            MainPage = new mySolution.MainPage();
            //Page1 = new mySolution.Page1(); 
        }
        /*
        public static void change(NavigationPage n)
        {
            MainPage = n;
        }  */

        protected override void OnStart ()
        {
            // Handle when your app starts
        }

        protected override void OnSleep ()
        {
            // Handle when your app sleeps
        }

        protected override void OnResume ()
        {
            // Handle when your app resumes
        }
    }
}

这是一个屏幕截图:

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

在Python 3中弃用了该方法。使用

some_key in some_dict

测试字典中密钥的成员资格。

所以,举个例子:

if "hey" in jim:
    print("hey")