本文主要是实现:怎样把小写字母转换成大写字母,把大写字母变成小写字母代码:#!/usr/bin/env python# author by lh# -*- coding:utf-8 -*-
temp1=‘abcdefg‘temp_new1=temp1.upper()print temp_new1 temp2=‘ABCDEFG‘temp_new2=temp2.lower()print temp_new2
运行结果:
时间: 2024-10-22 10:34:19
本文主要是实现:怎样把小写字母转换成大写字母,把大写字母变成小写字母代码:#!/usr/bin/env python# author by lh# -*- coding:utf-8 -*-
temp1=‘abcdefg‘temp_new1=temp1.upper()print temp_new1 temp2=‘ABCDEFG‘temp_new2=temp2.lower()print temp_new2
运行结果: