我在Linux OS(Ubuntu 12.04)中开发了一个带Django框架(python和mysql DB)的项目,我想在另一台 Linux 机器(Ubuntu 12.04)的localhost中运行这个项目而不在这里安装Django,是否可以运行django没有安装django的项目.有没有办法这样运行?
提前致谢.
我正在开发一个简单的应用程序,用于学习pivot controlwp7.
我们可以添加枢轴项目的图像而不是标题中的文本(波纹管图像中的红色标记区域).
可以添加图片,请建议我
我的xaml代码是:
<Grid x:Name="LayoutRoot" Background="Transparent">
<!--Pivot Control-->
<controls:Pivot Title="MY APPLICATION" Name="mainPivot">
<!--Pivot item one-->
<controls:PivotItem Header="item1">
<Grid>
<Image Source="/SchoolList;component/Gallery/child.jpg"/>
</Grid>
</controls:PivotItem>
<!--Pivot item two-->
<controls:PivotItem Header="item2">
<Grid>
<Image Source="/SchoolList;component/Gallery/class.jpg"/>
</Grid>
</controls:PivotItem>
</controls:Pivot>
</Grid>
Run Code Online (Sandbox Code Playgroud)
提前致谢

以下是示例数据帧
df = pd.DataFrame([["aa_1_a", 9],["bb_2_b", 2], ["3_c", 7], ["dd_4_d", 5]], columns=['A', 'B'])
>>> df
A B
0 aa_1_a 9
1 bb_2_b 2
2 3_c 7 <-- invalid row based on some regex
3 dd_4_d 5
Run Code Online (Sandbox Code Playgroud)
在列AI上需要执行一些regax验证,需要提取数字并替换相同的列
预期产量:
A B
0 1 9
1 2 2
3 4 5
Run Code Online (Sandbox Code Playgroud)
我设法通过应用过滤器来验证正则表达式和执行替换功能以获得高于输出.
无论如何,以简单的方式获得预期的输出
提前致谢.