标签: printing

javascript/jquery 的最佳浏览器打印库、插件或代码段是什么?

我正在尝试打印网页的一部分,并且有多个 css 文件,其中一些文件有助于“打印”媒体类型。我见过的一些插件假设你只有一个 media="print" css 文件,这就是它所需要的。我看过 PrintArea 和 jsprint 并且对它们中的任何一个都没有留下深刻印象,我相信我可以调整它们以获得我需要的东西,但我希望那里有一个我尚未发现的更好的库。

javascript printing jquery printing-web-page

0
推荐指数
1
解决办法
3855
查看次数

如何在 Java 中并排打印行?

我在任何地方都找不到;我可能会用错误的关键字找到它。

图片描绘了一千个字,让我解释一下。

假设我们有一组未知数量的字符串:

String hello = "Hello world\n Welcome\n"
String goodbye = "Goodbye\n See you in the next life\n"
String do = "Do something\n Be part of us\n"
Run Code Online (Sandbox Code Playgroud)

我想要一个产生这样结果的函数:

String hellogoodbyedo = "
  Hello world_________________Goodbye________________________Do Something\n
  Welcome_____________________See you in the next life_______Be part of us\n"
Run Code Online (Sandbox Code Playgroud)

其中_表示空格。有这样做的聪明方法吗?

java printing algorithm system.out

0
推荐指数
1
解决办法
9155
查看次数

如何在打印时用"+"分隔范围函数的值?

我是python的新手,我坚持一个简单的任务.我想在同一行打印一系列数字,每行之间都有一个"+".这是迄今为止我能做到的最好的,但显然在我的行尾有一个额外的"+".

for i in range (1,10):
    print (i , end="+")
Run Code Online (Sandbox Code Playgroud)

输出:

1+2+3+4+5+6+7+8+9+ 
Run Code Online (Sandbox Code Playgroud)

python printing

0
推荐指数
1
解决办法
53
查看次数

如何将Thermal Bluetooth Printer连接到iOS设备

我有这款Thermal Bluetooth Printer Impress +。我正在制作应打印账单的自定义应用程序。我已经编写了将其连接到iPhone的代码,但是它从未出现在搜索中。它从未达到didDiscoverPeripheral。我不知道怎么了 以下是我用于搜索蓝牙设备的代码。请帮忙。任何帮助将不胜感激。

import UIKit
import CoreBluetooth

class ViewController: UIViewController, CBCentralManagerDelegate, CBPeripheralDelegate {
    var centralManager: CBCentralManager!
    var peripheral: CBPeripheral!
    var writeCharacteristic: CBCharacteristic!
    var service: CBService!
    var characteristic: CBCharacteristic!

    var bluetoothAvailable = false
    let message = "1"

    @IBOutlet weak var labelDeviceName: UILabel!

    override func viewDidLoad() {
        super.viewDidLoad()

        centralManager = CBCentralManager(delegate: self, queue: nil)
    }

    func centralManagerDidUpdateState(_ central: CBCentralManager)
    {
        print("Checking state")
        switch (central.state)
        {
        case .poweredOff:
            print("CoreBluetooth BLE hardware is powered off")

        case .poweredOn:
            print("CoreBluetooth BLE hardware …
Run Code Online (Sandbox Code Playgroud)

printing bluetooth thermal-printer swift

0
推荐指数
1
解决办法
2816
查看次数

从结构中打印通过C中的值传递

TL; DR:

printf()printLotInfo()通过值时打印垃圾.

#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <math.h>
#include <string.h>

typedef struct Time
{
   int hour;                              //Hour of day
   int minute;                            //Minute of hour
} Time;

typedef struct Car
{
   char * plateNumber;                    //String to hold plate
   char hasPermit;                        //True/False
   Time * enteringTime;                   //Time Struct
   int lotParkedIn;                       //Where is the car located
} Car;

typedef struct ParkingLot
{
   int lotNumber;                         //Lot identifier
   double hourlyRate;                     //$$/h
   double maxCharge;                      //Maximum daily charge
   int capacity;                          //How many …
Run Code Online (Sandbox Code Playgroud)

c printing printf struct

0
推荐指数
1
解决办法
81
查看次数

Can I use special characters like tabulations and newlines in Show?

data Pair = P Int Int

instance Show Pair where
  show (P n1 n2) = (show n1) ++ "\t" ++ (show n2)
Run Code Online (Sandbox Code Playgroud)

Result:

GHCi, version 7.6.3: http://www.haskell.org/ghc/  :? for help
\Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
[1 of 1] Compiling Main             ( labn.hs, interpreted )
Ok, modules loaded: Main.
*Main> show (P 5 6)
"5\t6"
Run Code Online (Sandbox Code Playgroud)

OK for a pair of ints this might be an …

printing string haskell

0
推荐指数
1
解决办法
57
查看次数

为什么打印功能无法在正确的时间运行?

这是我的代码:

import time as t

print('hello', end=' ')
t.sleep(1)
print('hello', end=' ')
t.sleep(1)
print('hello', end=' ')
t.sleep(1)
Run Code Online (Sandbox Code Playgroud)

我的问题是所有打印命令都在sleep命令之后执行,而这不是我的预期输出。

python printing

0
推荐指数
1
解决办法
64
查看次数

“无”一词在输出的每一行中不断出现

对于课堂上的作业,我正在一个名为student()的类中创建对象。它涉及用户输入学生信息,然后以一种不错的格式输出学生信息。但是,控制台窗口中的每一行都会打印出“无”字样,并要求用户输入。我不确定为什么要打印出来,我想解决这个问题。

我相信问题出在我在定义函数init(自我)的地方,我在其中分配数据成员,但是我已经以多种方式更改了代码,但还没有运气。

class student(): 

     def __init__(self):

        self.name = input(print('What is the Student Name?: '))
        self.address = input(print('What is the Student address?: '))
        self.city = input(print('In which city does the Student reside?: '))
        self.state = input(print('In which state does the Student reside?: '))
        self.zip = input(print('In which zip code does the student reside?: '))
        self.id = input(print('What is the Student ID?: '))
        self.gpa = input(print('What is the Student GPA?: '))

        return

def formatInfo(list):

    for student in list:
        print('Student Name: …
Run Code Online (Sandbox Code Playgroud)

python printing function object

0
推荐指数
1
解决办法
41
查看次数

使用python3进行字符串格式打印:如何从数组打印?

Python3具有超级string.format打印:

'{} {}'.format('one', 'two')
Run Code Online (Sandbox Code Playgroud)

如果我的字符串在数组中,则一种方法是将它们键入:

a = ['one','two']
'{} {}'.format(a[0],a[1])
Run Code Online (Sandbox Code Playgroud)

但是,如何从数组中打印,而不必键入每个元素呢?

例如,损坏的代码:

a = ['one','two']
'{} {}'.format(a)
Run Code Online (Sandbox Code Playgroud)

给我一个预期的错误: IndexError: tuple index out of range

当然,玩','.join(a)不会有所帮助,因为它给出的是一个字符串而不是2。

(或者有没有办法用f弦更好地做到这一点?)


对于完全公开,我使用的是原始字符串,因为它具有某些几何意义,而我的真实代码如下所示:

hex_string = r'''
            _____
           /     \
          /       \
    ,----(    {}    )----.
   /      \       /      \
  /   {}    \_____/   {}    \
  \        /     \        /
   \      /       \      /
    )----(    {}    )----(
   /      \       /      \
  /        \_____/        \
  \   {}    /     \   {}    /
   \      /       \      /
    `----(    {}    )----' …
Run Code Online (Sandbox Code Playgroud)

python printing string-formatting python-3.x

0
推荐指数
1
解决办法
325
查看次数

有没有一种方法可以定义一个变量,该变量是Python函数内部的一个参数?

是否可以定义作为函数内部参数的变量?我尝试这样做:

def myfunc(variable):
    variable = 5


myfunc(x)
print(x)
Run Code Online (Sandbox Code Playgroud)

我期望在屏幕上看到数字“ 5”,因为我正在定义x(即5)然后进行打印。但是我得到这个NameError:

Traceback (most recent call last):
  File "C:\Users\yoelc\PycharmProjects\Test\app.py", line 4, in <module>
    myfunc(x)
NameError: name 'x' is not defined
Run Code Online (Sandbox Code Playgroud)

我知道可以这样做:

def myfunc():
    return 5


x = myfunc()
print(x)
Run Code Online (Sandbox Code Playgroud)

但这不是我要尝试的。有没有办法定义这个?

python printing variables parameters function

0
推荐指数
1
解决办法
42
查看次数