在python 3中将字符串更改为日期格式

时间:2017-10-18 13:52:12

标签: python-3.x

<?php
// src/AppBundle/Entity/User.php

namespace AppBundle\Entity;

use FOS\UserBundle\Entity\User as BaseUser;
use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity
 * @ORM\Table(name="fos_user")
*/
class User extends BaseUser
{
/**
 * @ORM\Id
 * @ORM\Column(type="integer")
 * @ORM\GeneratedValue(strategy="AUTO")
 */
protected $id;

public function __construct()
{
    parent::__construct();
    // your own logic
}
}
月份:11 日:1 年份:2016年 ('11','11','2016')&lt; ----如何将此转换为11/01/2016格式?

1 个答案:

答案 0 :(得分:1)

您不需要日期时间模块的功能,您只需:

group  a  b     c     d    e  f
    1  1  3.25  1.75  2 0  0
    2  1  3.25  1.75  3.5  0  0
    3  1  3.25  1.75  3.5  0  1

如果你想让它看起来漂亮和pythonic:

customer id group
1   1
2   1
3   2
4   3
5   3

日期时间对您没有帮助,因为它的格式主要适用于时间数学。