打印()

王林
发布: 2024-07-26 13:08:54
原创
1008 人浏览过

打印()

hi, everybody
today I gone to explain which I learnt.

打印() means printing a str, int, flo, etc.

Printing a String
when we want to print a string can use this syntax:
syntax:

print()
登录后复制

eg:

>>>print("hello")
>>>hello
登录后复制

Printing a variables
When we want to print a variables we can use this syntax
eg:

>>>name="hello" 
>>>print(name)

>>> hello
登录后复制

Printing into multiple items
You can print multiple items by separating them with commas.
eg:

>>>age="45"
>>>city="chennai"
>>>name="kavin"
>>>print("Name:",name,"Age:",age,"City:",city")

>>>Name: kavin Age: 45 City: chennai
登录后复制

Formatting with f-strings
An f-string is a way to format strings in Python. You can insert variables directly into the string by prefixing it with an f and using curly braces {} around the variables.
eg:

>>>age="45"
>>>city="chennai"
>>>name="kavin"
>>>print("Name:{name},Age:{age},City:{city}")

>>>Name: kavin Age: 45 City: chennai
登录后复制

Concatenation of strings

We can combine the strings by this.
eg:

>>>main_dish="Parotta"
>>>side_dish="salna"
>>>print(main_dish+""+side_dish+"!")

>>>Parotta salna!
登录后复制

Escape sequencenes
Escape sequences allow you to include special characters in a string. For example, \n adds a new line.
eg:

>>>print("hi\nhello\nfriends")
>>>hi
   hello
   friends
登录后复制

Raw(r) strings
Raw stings are strings which type only which is give in the input.
eg:

>>> print(r"C:users\\name\\tag")
>>> C:users\name\tag
登录后复制

Printing numbers

It used to print numbers.
eg

>>>print(123545)
>>>123545
登录后复制

Printing the results of the expressions
This is used to find the value of a expression.
eg;

>>>print(1+3)
>>>4
登录后复制

Printing lists and dictionaries
We can the entire lists and dictionaries.
eg:

>>>fruits["banana","apple","cherry"]
>>>print(fruits)

>>>['banana','apple','cherry']
登录后复制

using sep and end Parameters
We can use this to separate(sep) and end(end) with this parameters.
eg:

>>>print("hello","world",sep="-",end="!")
>>>hello-world!
登录后复制

Triple Quotes
We can use this for print as a same.
eg:

>>>print("""
hello 
everybody
""")

>>>hello 
   everybody
登录后复制

String Multiplication
This is used to Multipling string.
eg:

>>>print("hello"*3)
>>>hellohellohello
登录后复制

This is learnt in the class of python print() class which is I leant by seeing Parotta Salna python class of Day-2

以上是打印()的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:dev.to
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板